diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 21:31:45 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-10-15 21:31:45 +0200 |
commit | a1057c9a035e77db257158af98153ae69882e19e (patch) | |
tree | 35c4b9d206d539a98dc750c0487bbdd74ca2ef88 /tests/scripts/test-scripts.cpp | |
parent | ec1112624602710a7bd301b5060299a44c8ea607 (diff) | |
download | weechat-a1057c9a035e77db257158af98153ae69882e19e.zip |
tests: add tests on config functions (scripting API)
Diffstat (limited to 'tests/scripts/test-scripts.cpp')
-rw-r--r-- | tests/scripts/test-scripts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scripts/test-scripts.cpp b/tests/scripts/test-scripts.cpp index b716ca2c9..e60f69922 100644 --- a/tests/scripts/test-scripts.cpp +++ b/tests/scripts/test-scripts.cpp @@ -221,7 +221,7 @@ TEST(Scripts, API) /* load script (run tests) */ snprintf (str_command, sizeof (str_command), - "/script load -q %s/testapi.%s", + "/script load -q %s/weechat_testapi.%s", path_testapi_output_dir, languages[i][1]); run_cmd (str_command); @@ -231,7 +231,7 @@ TEST(Scripts, API) /* run tests */ snprintf (str_command, sizeof (str_command), - "/testapi.%s", + "/weechat_testapi.%s", languages[i][1]); run_cmd (str_command); @@ -253,7 +253,7 @@ TEST(Scripts, API) /* unload script */ snprintf (str_command, sizeof (str_command), - "/script unload -q testapi.%s", + "/script unload -q weechat_testapi.%s", languages[i][1]); run_cmd (str_command); |