From e2eb02a23b25be7341dae3d17ae9f8e4cc2e4832 Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Wed, 3 Jan 2024 11:24:06 -0800 Subject: [PATCH] async migrations count of queries 4->5 --- posthog/async_migrations/test/test_0010_move_old_partitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/async_migrations/test/test_0010_move_old_partitions.py b/posthog/async_migrations/test/test_0010_move_old_partitions.py index 3cc21d3b67a58..11f47dea36e85 100644 --- a/posthog/async_migrations/test/test_0010_move_old_partitions.py +++ b/posthog/async_migrations/test/test_0010_move_old_partitions.py @@ -70,7 +70,7 @@ def test_completes_successfully(self): self.assertTrue(run_migration()) # create table + 3 move operations - self.assertEqual(len(MIGRATION_DEFINITION.operations), 4) + self.assertEqual(len(MIGRATION_DEFINITION.operations), 5) self.assertTrue( "ALTER TABLE sharded_events MOVE PARTITION '190001' TO TABLE events_backup"