@@ -41,7 +41,7 @@ public void MutateCallsImageOperationsProvider_Func_OriginalImage()
4141 this . image . Mutate ( x => x . ApplyProcessor ( this . processor ) ) ;
4242
4343 Assert . True ( this . provider . HasCreated ( this . image ) ) ;
44- Assert . Contains ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . Processor ) ) ;
44+ Assert . Contains ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . GenericProcessor ) ) ;
4545 }
4646
4747 [ Fact ]
@@ -50,7 +50,7 @@ public void MutateCallsImageOperationsProvider_ListOfProcessors_OriginalImage()
5050 this . image . Mutate ( this . processor ) ;
5151
5252 Assert . True ( this . provider . HasCreated ( this . image ) ) ;
53- Assert . Contains ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . Processor ) ) ;
53+ Assert . Contains ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . GenericProcessor ) ) ;
5454 }
5555
5656 [ Fact ]
@@ -59,7 +59,7 @@ public void CloneCallsImageOperationsProvider_Func_WithDuplicateImage()
5959 Image < Rgba32 > returned = this . image . Clone ( x => x . ApplyProcessor ( this . processor ) ) ;
6060
6161 Assert . True ( this . provider . HasCreated ( returned ) ) ;
62- Assert . Contains ( this . processor , this . provider . AppliedOperations ( returned ) . Select ( x => x . Processor ) ) ;
62+ Assert . Contains ( this . processor , this . provider . AppliedOperations ( returned ) . Select ( x => x . GenericProcessor ) ) ;
6363 }
6464
6565 [ Fact ]
@@ -68,31 +68,31 @@ public void CloneCallsImageOperationsProvider_ListOfProcessors_WithDuplicateImag
6868 Image < Rgba32 > returned = this . image . Clone ( this . processor ) ;
6969
7070 Assert . True ( this . provider . HasCreated ( returned ) ) ;
71- Assert . Contains ( this . processor , this . provider . AppliedOperations ( returned ) . Select ( x => x . Processor ) ) ;
71+ Assert . Contains ( this . processor , this . provider . AppliedOperations ( returned ) . Select ( x => x . GenericProcessor ) ) ;
7272 }
7373
7474 [ Fact ]
7575 public void CloneCallsImageOperationsProvider_Func_NotOnOrigional ( )
7676 {
7777 Image < Rgba32 > returned = this . image . Clone ( x => x . ApplyProcessor ( this . processor ) ) ;
7878 Assert . False ( this . provider . HasCreated ( this . image ) ) ;
79- Assert . DoesNotContain ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . Processor ) ) ;
79+ Assert . DoesNotContain ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . GenericProcessor ) ) ;
8080 }
8181
8282 [ Fact ]
8383 public void CloneCallsImageOperationsProvider_ListOfProcessors_NotOnOrigional ( )
8484 {
8585 Image < Rgba32 > returned = this . image . Clone ( this . processor ) ;
8686 Assert . False ( this . provider . HasCreated ( this . image ) ) ;
87- Assert . DoesNotContain ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . Processor ) ) ;
87+ Assert . DoesNotContain ( this . processor , this . provider . AppliedOperations ( this . image ) . Select ( x => x . GenericProcessor ) ) ;
8888 }
8989
9090 [ Fact ]
9191 public void ApplyProcessors_ListOfProcessors_AppliesAllProcessorsToOperation ( )
9292 {
9393 var operations = new FakeImageOperationsProvider . FakeImageOperations < Rgba32 > ( null , false ) ;
9494 operations . ApplyProcessors ( this . processor ) ;
95- Assert . Contains ( this . processor , operations . Applied . Select ( x => x . Processor ) ) ;
95+ Assert . Contains ( this . processor , operations . Applied . Select ( x => x . GenericProcessor ) ) ;
9696 }
9797
9898 public void Dispose ( ) => this . image . Dispose ( ) ;
0 commit comments