BUG: fix REMOVE test

This commit is contained in:
Bill Hoffman 2003-03-21 11:33:30 -05:00
parent 0a29ebad97
commit 62314ea808
3 changed files with 3 additions and 3 deletions

View File

@ -798,7 +798,7 @@ int main()
// ----------------------------------------------------------------------
// Test REMOVE command
if (strcmp("a;b;d",REMOVE_STRING))
if (strcmp("a;b;d",REMOVE_STRING) == 0)
{
cmPassed("REMOVE is working");
}

View File

@ -798,7 +798,7 @@ int main()
// ----------------------------------------------------------------------
// Test REMOVE command
if (strcmp("a;b;d",REMOVE_STRING))
if (strcmp("a;b;d",REMOVE_STRING) == 0)
{
cmPassed("REMOVE is working");
}

View File

@ -798,7 +798,7 @@ int main()
// ----------------------------------------------------------------------
// Test REMOVE command
if (strcmp("a;b;d",REMOVE_STRING))
if (strcmp("a;b;d",REMOVE_STRING) == 0)
{
cmPassed("REMOVE is working");
}