diff options
author | LuK1337 <priv.luk@gmail.com> | 2024-05-26 12:21:55 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-05-26 14:00:07 +0200 |
commit | 9bd1ea1e5eb06a70ee907c1a10fc0316e0c740ba (patch) | |
tree | 9b8d3da3a0d6691d6dfce9f2cfe4541971a7ff93 | |
parent | 6f774a8e8e316557ddb9b7f03f8037c03cfd6983 (diff) | |
download | weechat-9bd1ea1e5eb06a70ee907c1a10fc0316e0c740ba.zip |
tests: scripts: fix wrong ifdef check
-rw-r--r-- | tests/scripts/test-scripts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/test-scripts.cpp b/tests/scripts/test-scripts.cpp index d8bcc4385..9a71c4140 100644 --- a/tests/scripts/test-scripts.cpp +++ b/tests/scripts/test-scripts.cpp @@ -153,7 +153,7 @@ TEST(Scripts, API) #ifdef HAVE_JAVASCRIPT { "javascript", "js" }, #endif -#ifdef HAVE_PYTHON +#ifdef HAVE_PHP { "php", "php" }, #endif { NULL, NULL } |