From 05a037db702fefaaa0472388566fbd72c154bdf9 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Wed, 31 Jan 2024 12:08:45 +0100 Subject: [PATCH] BillingTest: Fix TearDown --- Tests/HelperTests/BillingTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/HelperTests/BillingTest.cs b/Tests/HelperTests/BillingTest.cs index 9b48896..c2f6c13 100644 --- a/Tests/HelperTests/BillingTest.cs +++ b/Tests/HelperTests/BillingTest.cs @@ -31,8 +31,8 @@ namespace Tests.HelperTests { if (Connection == null) return; await AppDbContext.ExecuteBatch(Connection, """ DELETE FROM credit; - DELETE FROM delivery_part_bucket; DELETE FROM payment_variant; + DELETE FROM delivery_part_bucket; """); }