Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov committed Oct 3, 2024
1 parent 67b1c5b commit 344a4a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tests/trikJsRunnerTests/trikJsRunnerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ TEST_F(TrikJsRunnerTest, scriptWaitQuit)
mStdOut.clear();
ASSERT_EQ(err, EXIT_SCRIPT_SUCCESS);
}

}

TEST_F(TrikJsRunnerTest, twoProgramsTest)
Expand Down
3 changes: 1 addition & 2 deletions tests/trikPyRunnerTests/trikPyRunnerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,8 @@ TEST_F(TrikPyRunnerTest, scriptWait)
ASSERT_EQ(err, EXIT_SCRIPT_SUCCESS);
err = runDirectCommandAndWaitForQuit("print('Elapsed %d ms with expected %d ms' % (elapsed, timeout));");
ASSERT_EQ(err, EXIT_SCRIPT_SUCCESS);
err = runDirectCommandAndWaitForQuit("assert(abs(elapsed-timeout) < 10)");
err = runDirectCommandAndWaitForQuit("assert(abs(elapsed-timeout) < 5)");
ASSERT_EQ(err, EXIT_SCRIPT_SUCCESS);

}

TEST_F(TrikPyRunnerTest, directCommandContextWithTimersAndQtCore)
Expand Down

0 comments on commit 344a4a0

Please sign in to comment.