@@ -755,7 +755,7 @@ FROM [__EFMigrationsHistory]
755755ORDER BY [MigrationId];
756756
757757INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
758- VALUES (N'00000000000000_Empty', N'9 .0.0');
758+ VALUES (N'00000000000000_Empty', N'7 .0.0-test ');
759759
760760--Before
761761
@@ -798,18 +798,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
798798END
799799
800800INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
801- VALUES (N'00000000000001_Migration1', N'9 .0.0');
801+ VALUES (N'00000000000001_Migration1', N'7 .0.0-test ');
802802
803803--After
804804
805805INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
806- VALUES (N'00000000000002_Migration2', N'9 .0.0');
806+ VALUES (N'00000000000002_Migration2', N'7 .0.0-test ');
807807
808808DECLARE @result int;
809809EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
810810SELECT @result
811811""" ,
812- Fixture . TestSqlLoggerFactory . Sql ,
812+ Fixture . TestSqlLoggerFactory . Sql . Replace ( ProductInfo . GetVersion ( ) , "7.0.0-test" ) ,
813813 ignoreLineEndingDifferences : true ) ;
814814 }
815815
@@ -867,7 +867,7 @@ FROM [__EFMigrationsHistory]
867867ORDER BY [MigrationId];
868868
869869INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
870- VALUES (N'00000000000000_Empty', N'9 .0.0');
870+ VALUES (N'00000000000000_Empty', N'7 .0.0-test ');
871871
872872--Before
873873
@@ -910,18 +910,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
910910END
911911
912912INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
913- VALUES (N'00000000000001_Migration1', N'9 .0.0');
913+ VALUES (N'00000000000001_Migration1', N'7 .0.0-test ');
914914
915915--After
916916
917917INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
918- VALUES (N'00000000000002_Migration2', N'9 .0.0');
918+ VALUES (N'00000000000002_Migration2', N'7 .0.0-test ');
919919
920920DECLARE @result int;
921921EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
922922SELECT @result
923923""" ,
924- Fixture . TestSqlLoggerFactory . Sql ,
924+ Fixture . TestSqlLoggerFactory . Sql . Replace ( ProductInfo . GetVersion ( ) , "7.0.0-test" ) ,
925925 ignoreLineEndingDifferences : true ) ;
926926 }
927927
0 commit comments