From be943e97576e844e2e38ba3dc1d2741052fc254d Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 4 Dec 2025 14:11:13 +0100 Subject: Fix cURL test. --- tests/vendor/curl/test_vendor_curl.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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) -- cgit v1.2.3