Skip to content

Commit 01367df

Browse files
committed
fix uri in test
1 parent 501ba3c commit 01367df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/GraphQL.Integration.Tests/UriExtensionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void HasWebSocketSchemaTest(string url, bool result)
2828
[InlineData("ws://this-url-can-be-converted.net", true, "ws://this-url-can-be-converted.net")]
2929
[InlineData("wss://this-url-can-be-converted.net", true, "wss://this-url-can-be-converted.net")]
3030
[InlineData("https://this-url-can-be-converted.net/and/all/elements/?are#preserved", true, "wss://this-url-can-be-converted.net/and/all/elements/?are#preserved")]
31-
[InlineData("ftp://this-url-can-be-converted.net", false, null)]
31+
[InlineData("ftp://this-url-cannot-be-converted.net", false, null)]
3232
// AppSync example
3333
[InlineData("wss://example1234567890000.appsync-realtime-api.us-west-2.amazonaws.com/graphql?header=123456789ABCDEF&payload=e30=", true, "wss://example1234567890000.appsync-realtime-api.us-west-2.amazonaws.com/graphql?header=123456789ABCDEF&payload=e30=")]
3434
public void GetWebSocketUriTest(string input, bool canConvert, string result)

0 commit comments

Comments
 (0)