Skip to content

Commit ac5c1da

Browse files
committed
updated C curl tests
1 parent 54ddb09 commit ac5c1da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/codegen/c_curl_codegen_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ int main() {
147147
CURLcode res;
148148
curl = curl_easy_init();
149149
if(curl) {
150-
curl_easy_setopt(curl, CURLOPT_URL, "https://api.apidash.dev/country/data?code=IND");
150+
curl_easy_setopt(curl, CURLOPT_URL, "https://api.apidash.dev/country/data?code=US&code=IND");
151151
struct ResponseData response_data = {0};
152152
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
153153
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response_data);

0 commit comments

Comments
 (0)