We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cd2d45 commit 2e6a3b0Copy full SHA for 2e6a3b0
2 files changed
.gitignore
@@ -170,4 +170,5 @@ cython_debug/
170
171
# local developments
172
/test_logs/
173
-/logs/
+/logs/
174
+dev_guide.md
tests/test_tracker.py
@@ -164,7 +164,7 @@ def test_stop_tracker(self):
164
165
self.assertFalse(self.thread.running)
166
self.mock_logger.info.assert_any_call("Monitoring thread ended.")
167
- self.mock_logger.output.assert_called_with("Finished monitoring.", verbose_level=1)
+ self.mock_logger.output.assert_any_call("Finished monitoring.", verbose_level=1)
168
169
def test_stop_tracker_not_running(self):
self.thread.running = False
0 commit comments