Remove inadvertent change in fish_tests.cpp

This commit is contained in:
Aaron Gyes 2016-06-23 17:36:20 -07:00
parent fa78a7101c
commit 6122ae83a6

View File

@ -2255,7 +2255,6 @@ static int test_universal_helper(int *x) {
static void test_universal() { static void test_universal() {
say(L"Testing universal variables"); say(L"Testing universal variables");
if (system("mkdir -p " "/tmp/fish_uvars_test/")) err(L"mkdir failed"); if (system("mkdir -p " "/tmp/fish_uvars_test/")) err(L"mkdir failed");
const int threads = 16; const int threads = 16;
@ -2293,7 +2292,7 @@ static void test_universal() {
} }
} }
if (system("rm -d /tmp/fish_uvars_test")) err(L"rm failed"); if (system("rm -Rf /tmp/fish_uvars_test")) err(L"rm failed");
putc('\n', stderr); putc('\n', stderr);
} }