From 48d048149a41be641c6e0a739b27cfdc018f0a08 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 26 Jun 2024 20:22:53 -0700 Subject: [PATCH] Update bbstools_test.py --- bbstools_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bbstools_test.py b/bbstools_test.py index 75e97c0..4c06e2a 100644 --- a/bbstools_test.py +++ b/bbstools_test.py @@ -30,9 +30,9 @@ class TestBBSListMessages(unittest.TestCase): def test_bbs_delete_message(self): # Mock the bbs_messages list - bbs_messages = [[1, "Welcome to meshBBS", "Welcome to the BBS, please post a message!"], - [2, "Test Message 1", "This is a test message 1"], - [3, "Test Message 2", "This is a test message 2"]] + bbs_messages = [[1, "Welcome to meshBBS", "Welcome to the BBS, please post a message!",0], + [2, "Test Message 1", "This is a test message 1",0], + [3, "Test Message 2", "This is a test message 2",0]] # Mock the return value of bbs_messages with mock.patch('bbstools.bbs_messages', bbs_messages):