aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-12-04 14:11:13 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-12-04 14:11:13 +0100
commitbe943e97576e844e2e38ba3dc1d2741052fc254d (patch)
treea75e8ba1934ca98907e2d12e2183242d4c240523 /tests
parent9ac813e5826369bca66804093e2ead5923a4f461 (diff)
Fix cURL test.
Diffstat (limited to 'tests')
-rw-r--r--tests/vendor/curl/test_vendor_curl.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vendor/curl/test_vendor_curl.odin b/tests/vendor/curl/test_vendor_curl.odin
index 62aa438b0..ce54d0ab1 100644
--- a/tests/vendor/curl/test_vendor_curl.odin
+++ b/tests/vendor/curl/test_vendor_curl.odin
@@ -24,7 +24,7 @@ test_curl :: proc(t: ^testing.T) {
curl.global_init(curl.GLOBAL_ALL)
c := curl.easy_init()
- testing.expect(t, c == nil, "curl.easy_init failed")
+ testing.expect(t, c != nil, "curl.easy_init failed")
defer curl.easy_cleanup(c)