Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Apr 17, 2020
1 parent 49ee1ee commit f7dc50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Types.Tests/Types/Scalars/UrlTypeTests.cs
Expand Up @@ -116,7 +116,7 @@ public void Serialize_Url()
object serializedValue = urlType.Serialize(uri);

// assert
Assert.Equal(uri, Assert.IsType<Uri>(serializedValue));
Assert.Equal(uri.ToString(), Assert.IsType<string>(serializedValue));
}

[Fact]
Expand Down

0 comments on commit f7dc50c

Please sign in to comment.