Skip to content

Commit 4ac3637

Browse files
committed
fix test_uri_parse.dart.
1 parent 781a173 commit 4ac3637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_uri_parse.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ List<void Function()> testFunctions = <void Function()>[
88
expect(uri.scheme, 'wss');
99
Uri uri2 = uri.replace(
1010
scheme: uri.scheme == 'wss' ? 'https' : 'http', path: '/wsxxx');
11-
expect(uri.scheme, 'https');
11+
expect(uri.scheme, 'wss');
1212
expect(uri2.scheme, 'https');
1313
})
1414
];

0 commit comments

Comments
 (0)