chat et al: '.next' and '.config.yaml' are now ignored by ChatDB

This commit is contained in:
2023-09-14 12:45:11 +02:00
parent 5cb88dad1b
commit 071871f929
4 changed files with 14 additions and 8 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ class TestChatDB(unittest.TestCase):
self.assertEqual(chat_db.get_next_fid(), 5)
self.assertEqual(chat_db.get_next_fid(), 6)
self.assertEqual(chat_db.get_next_fid(), 7)
with open(chat_db.next_fname, 'r') as f:
with open(chat_db.next_path, 'r') as f:
self.assertEqual(f.read(), '7')
def test_chat_db_write(self) -> None: