aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2023-08-12 14:59:29 +0200
committerFlorian Fischer <florian.fischer@muhq.space>2023-08-12 14:59:29 +0200
commit78f2adcc2157da4527c61a2c67c42487deb00543 (patch)
treed45ae1b7ad54bb1c567c69e4f6705bedcfd737e0
parent075a96276e0213f7753856d443476c765e0151e1 (diff)
downloadgeldschieberbot-78f2adcc2157da4527c61a2c67c42487deb00543.tar.gz
geldschieberbot-78f2adcc2157da4527c61a2c67c42487deb00543.zip
test: fix call to run the bot in single shot mode
-rwxr-xr-xtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index 59d3d96..f392a4d 100755
--- a/test.py
+++ b/test.py
@@ -77,7 +77,7 @@ def _run_bot(sender, cmd):
msg = msg_template.substitute(sender=sender, msg=cmd).replace("\n",
"\\n") + "\n"
res = subprocess.run(
- ["python3", "./geldschieberbot.py", "--no-quote"],
+ ["python3", "./single_shot.py", "--no-quote"],
text=True,
capture_output=True,
check=False,