From 9b1021fe6da229e6f40ddcadae17661a065b6a2d Mon Sep 17 00:00:00 2001 From: Max Halford Date: Sun, 29 Jan 2023 20:18:22 +0100 Subject: [PATCH] Update test_sql.py --- river/stream/test_sql.py | 1 + 1 file changed, 1 insertion(+) diff --git a/river/stream/test_sql.py b/river/stream/test_sql.py index 3f69bf697c..f688cb325e 100644 --- a/river/stream/test_sql.py +++ b/river/stream/test_sql.py @@ -58,6 +58,7 @@ def pokedb(): conn.execute(t_pokemons.insert(), pokemons) conn.execute(t_types.insert(), types) conn.execute(t_pokemon_types.insert(), pokemon_types) + conn.commit() return engine