Skip to content

Commit

Permalink
fixup! Integrate hierarchyid into the EF Core codebase
Browse files Browse the repository at this point in the history
Fix more tests
  • Loading branch information
bricelam committed Feb 17, 2023
1 parent c563792 commit fc93954
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/EFCore.SqlServer.HierarchyId.Tests/MigrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void Migration_and_snapshot_generate_with_anonymous_array()
.GetRequiredService<IMigrationsScaffolder>()
.ScaffoldMigration(migrationName, rootNamespace);

Assert.Equal(expectedMigration, migration.MigrationCode);
Assert.Equal(expectedSnapshot, migration.SnapshotCode);
Assert.Equal(expectedMigration, migration.MigrationCode, ignoreLineEndingDifferences: true);
Assert.Equal(expectedSnapshot, migration.SnapshotCode, ignoreLineEndingDifferences: true);
}
}

0 comments on commit fc93954

Please sign in to comment.