aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 20:51:29 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 20:51:29 +0200
commitd4e47fdb640c3ddce285157eee88db899461fa3a (patch)
treeec11a0df88f6db64a6017db7bc7efcaefedd04ec /test
parentstorage: requeue old runs from storage on startup (diff)
downloadcimple-d4e47fdb640c3ddce285157eee88db899461fa3a.tar.gz
cimple-d4e47fdb640c3ddce285157eee88db899461fa3a.zip
storage: mark completed runs as such
Diffstat (limited to 'test')
-rw-r--r--test/py/test_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/test_repo.py b/test/py/test_repo.py
index f3a10d7..abc7f18 100644
--- a/test/py/test_repo.py
+++ b/test/py/test_repo.py
@@ -13,7 +13,7 @@ class LoggingEventRunComplete(LoggingEvent):
super().__init__(timeout=60)
def log_line_matches(self, line):
- return 'Received a "run complete" message from worker' in line
+ return 'Received a "run finished" message from worker' in line
def set(self):
self.counter += 1