diff --git a/examples/example0.c b/examples/example0.c index 6391109..e2d8a82 100644 --- a/examples/example0.c +++ b/examples/example0.c @@ -11,7 +11,7 @@ int main(void) int curl_res; arg.filters_str = "{\"AccountAliases\": [\"Outscale\"]}"; - if (osc_init_sdk(&e, NULL, OSC_VERBOSE_MODE) < 0) { + if (osc_init_sdk(&e, NULL, 0) < 0) { fprintf(stderr, "fail to init osc-sdk-c\n"); return 1; } diff --git a/intergration-test.sh b/intergration-test.sh index 8d71e46..36ceb35 100755 --- a/intergration-test.sh +++ b/intergration-test.sh @@ -11,13 +11,6 @@ set -eE MSG_BASE="Test Example" -echo "OSC_ENDPOINT_API($is_local): " $OSC_ENDPOINT_API - -if [[ "$is_local" == "1" ]]; then - ./example0 - echo "example 0 done" -fi - trap "echo [$MSG_BASE 0 FAIL]" ERR out=$( ./example0 | grep -v '==' | jq )