From e2e373d2178ea76fe16fc8d07fffac8b175c2010 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 31 Mar 2020 21:18:17 -0700 Subject: [PATCH] Updated tests for new tables in #40 --- tests/test_save_tweets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_save_tweets.py b/tests/test_save_tweets.py index 4ad9beb..199338e 100644 --- a/tests/test_save_tweets.py +++ b/tests/test_save_tweets.py @@ -39,6 +39,8 @@ def test_tables(db): "media_tweets", "since_id_types", "since_ids", + "count_history_types", + "count_history", } == set(db.table_names()) # And check for indexes following_indexes = {tuple(i.columns) for i in db["following"].indexes}