Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 80e4c5b

Browse files
committed
fix test
1 parent d783775 commit 80e4c5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceStack.Text.Tests/BclStructTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void Can_customize_bool_deserialization()
9797
var dtoTrue = "{\"favorite\":true}".FromJson<Item>();
9898
Assert.That(dtoTrue.IsFavorite, Is.True);
9999

100-
var dtoFalse = "{\"favorite\":0}".FromJson<Item>();
100+
var dtoFalse = "{\"favorite\":false}".FromJson<Item>();
101101
Assert.That(dtoFalse.IsFavorite, Is.False);
102102
}
103103
}

0 commit comments

Comments
 (0)