Skip to content

Commit

Permalink
enabling/fixing test for issue #7573
Browse files Browse the repository at this point in the history
  • Loading branch information
maumar committed Apr 18, 2017
1 parent 5be04a4 commit eabc74e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/EFCore.SqlServer.FunctionalTests/QueryBugsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ private SqlServerTestStore CreateDatabase3758()

#region Bug3409

[Fact(Skip = "Issue #7573")]
[Fact]
public void ThenInclude_with_interface_navigations_3409()
{
using (CreateDatabase3409())
Expand Down Expand Up @@ -940,7 +940,7 @@ public void ThenInclude_with_interface_navigations_3409()

Assert.Equal(3, results.Count);
Assert.Equal(2, results.Count(c => c.SelfReferenceBackNavigation != null));
Assert.Equal(1, results.Count(c => c.ParentBackNavigation != null));
Assert.Equal(2, results.Count(c => c.ParentBackNavigation != null));
}

using (var context = new MyContext3409(_options))
Expand All @@ -959,7 +959,7 @@ public void ThenInclude_with_interface_navigations_3409()

Assert.Equal(3, results.Count);
Assert.Equal(2, results.Count(c => c.SelfReferenceBackNavigation != null));
Assert.Equal(1, results.Count(c => c.ParentBackNavigationB != null));
Assert.Equal(2, results.Count(c => c.ParentBackNavigationB != null));
}

using (var context = new MyContext3409(_options))
Expand Down

0 comments on commit eabc74e

Please sign in to comment.