From 1d7a3e894d252e7e3ca9f737905a768237dada5f Mon Sep 17 00:00:00 2001 From: Jonathan Karlsen Date: Thu, 11 Jan 2024 14:59:09 +0100 Subject: [PATCH] Fix old typo --- tests/test_post_messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_post_messages.py b/tests/test_post_messages.py index bed4ca9a5..12051d8bd 100644 --- a/tests/test_post_messages.py +++ b/tests/test_post_messages.py @@ -122,7 +122,7 @@ def test_main_missing_message_file(tmpdir): ] with pytest.raises(SystemExit) as excinfo: main(args) - assert "message file not-existing does not exisit" in str( + assert "message file not-existing does not exist" in str( excinfo.value, )