From a4d16e97a1c48481ff6cda5c7541a552f1e6d9e8 Mon Sep 17 00:00:00 2001 From: blob1807 <12388588+blob1807@users.noreply.github.com> Date: Sat, 13 Apr 2024 01:14:55 +1000 Subject: [PATCH] Fix CI's parser --- tests/core/net/test_core_net.odin | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/core/net/test_core_net.odin b/tests/core/net/test_core_net.odin index 52d22a9f0..9df03414c 100644 --- a/tests/core/net/test_core_net.odin +++ b/tests/core/net/test_core_net.odin @@ -533,22 +533,22 @@ split_url_test :: proc(t: ^testing.T) { { "http", "example.com", "/", {}, "Hellope", - {"http://example.com#Hellope"} + {"http://example.com#Hellope"}, }, { "https", "odin-lang.org", "/", {"a" = ""}, "Hellope", - {"https://odin-lang.org?a#Hellope"} + {"https://odin-lang.org?a#Hellope"}, }, { "http", "example.com", "/", {"a" = "b"}, "BeesKnees", - {"http://example.com?a=b#BeesKnees"} + {"http://example.com?a=b#BeesKnees"}, }, { "https", "odin-lang.org", "/docs/overview/", {}, "hellope", - {"https://odin-lang.org/docs/overview/#hellope"} + {"https://odin-lang.org/docs/overview/#hellope"}, }, } @@ -630,22 +630,22 @@ join_url_test :: proc(t: ^testing.T) { { "http", "example.com", "/", {}, "Hellope", - {"http://example.com/#Hellope"} + {"http://example.com/#Hellope"}, }, { "https", "odin-lang.org", "/", {"a" = ""}, "Hellope", - {"https://odin-lang.org/?a#Hellope"} + {"https://odin-lang.org/?a#Hellope"}, }, { "http", "example.com", "/", {"a" = "b"}, "BeesKnees", - {"http://example.com/?a=b#BeesKnees"} + {"http://example.com/?a=b#BeesKnees"}, }, { "https", "odin-lang.org", "/docs/overview/", {}, "hellope", - {"https://odin-lang.org/docs/overview/#hellope"} + {"https://odin-lang.org/docs/overview/#hellope"}, }, }