Skip to content

Commit 99ce90b

Browse files
committed
Fix skip condition
1 parent d32de47 commit 99ce90b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_instruction_executor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ TEST_F(InstructionExecutorTest, canceling_without_running_trajectory_returns_fal
249249

250250
TEST(InstructionExecutorTestStandalone, canceling_without_receiving_answer_returns_false)
251251
{
252-
if (!(robotVersionLessThan(ROBOT_IP, "10.0.0") || !g_HEADLESS))
252+
if (!(robotVersionLessThan(ROBOT_IP, "10.0.0") || g_HEADLESS))
253253
{
254254
GTEST_SKIP_("Running URCap tests for PolyScope X is currently not supported.");
255255
}

0 commit comments

Comments
 (0)