Skip to content

Commit

Permalink
Test cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Aug 15, 2020
1 parent 62c4534 commit 56b2090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/Statiq.Common.Tests/Settings/SettingsFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public void ConstructsObjectGraph()
dictionary.ShouldContainKey("key2");
IList<object> list = dictionary["key2"].ShouldBeAssignableTo<IList<object>>();
list.Count.ShouldBe(3);
list[0].ShouldBe("arr1");
list[0].ShouldBe("=> \"arr1\"");
list[1].ShouldBe("arr2");
dictionary = list[2].ShouldBeAssignableTo<IDictionary<string, object>>();
dictionary.ShouldContainKeyAndValue("foo1", "bar1");
dictionary.ShouldContainKeyAndValue("foo2", "bar2");
dictionary.ShouldContainKeyAndValue("foo2", "=> \"bar2\"");
dictionary = root["section1"].ShouldBeAssignableTo<IDictionary<string, object>>();
dictionary.ShouldContainKeyAndValue("key3", "3");
dictionary.ShouldContainKeyAndValue("key4", "value4");
Expand Down

0 comments on commit 56b2090

Please sign in to comment.