1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

tests: fix typo in language name

This commit is contained in:
Sébastien Helleu
2018-04-13 20:53:34 +02:00
parent 9265acf879
commit 3c97a1abae
+9 -9
View File
@@ -138,15 +138,15 @@ TEST(Scripts, API)
long long diff;
const char *ptr_test_scripts_dir;
const char *languages[][2] = {
{ "python", "py" },
{ "perl", "pl" },
{ "ruby", "rb" },
{ "lua", "lua" },
{ "tcl", "tcl" },
{ "scm", "scm" },
{ "jvascript", "js" },
{ "php", "php" },
{ NULL, NULL }
{ "python", "py" },
{ "perl", "pl" },
{ "ruby", "rb" },
{ "lua", "lua" },
{ "tcl", "tcl" },
{ "scm", "scm" },
{ "javascript", "js" },
{ "php", "php" },
{ NULL, NULL }
};
int i;