BUG: fix REMOVE test
This commit is contained in:
parent
0a29ebad97
commit
62314ea808
|
@ -798,7 +798,7 @@ int main()
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Test REMOVE command
|
// Test REMOVE command
|
||||||
if (strcmp("a;b;d",REMOVE_STRING))
|
if (strcmp("a;b;d",REMOVE_STRING) == 0)
|
||||||
{
|
{
|
||||||
cmPassed("REMOVE is working");
|
cmPassed("REMOVE is working");
|
||||||
}
|
}
|
||||||
|
|
|
@ -798,7 +798,7 @@ int main()
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Test REMOVE command
|
// Test REMOVE command
|
||||||
if (strcmp("a;b;d",REMOVE_STRING))
|
if (strcmp("a;b;d",REMOVE_STRING) == 0)
|
||||||
{
|
{
|
||||||
cmPassed("REMOVE is working");
|
cmPassed("REMOVE is working");
|
||||||
}
|
}
|
||||||
|
|
|
@ -798,7 +798,7 @@ int main()
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Test REMOVE command
|
// Test REMOVE command
|
||||||
if (strcmp("a;b;d",REMOVE_STRING))
|
if (strcmp("a;b;d",REMOVE_STRING) == 0)
|
||||||
{
|
{
|
||||||
cmPassed("REMOVE is working");
|
cmPassed("REMOVE is working");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue