Browse Source

Fix CI's parser

blob1807 1 year ago
parent
commit
a4d16e97a1
1 changed files with 8 additions and 8 deletions
  1. 8 8
      tests/core/net/test_core_net.odin

+ 8 - 8
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"},
 		},
 	}