From 06b3f1f89c5fc73cbc34f01b62809c801e6bffd0 Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Mon, 6 Mar 2023 09:49:43 +0100 Subject: [PATCH] fix tests --- tests/Feature/Member/PullMemberActionTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Feature/Member/PullMemberActionTest.php b/tests/Feature/Member/PullMemberActionTest.php index dc145b5b..ba443dcb 100644 --- a/tests/Feature/Member/PullMemberActionTest.php +++ b/tests/Feature/Member/PullMemberActionTest.php @@ -134,5 +134,8 @@ class PullMemberActionTest extends TestCase 'amount' => 1000, 'parent_id' => $subscription->id, ]); + $this->assertDatabaseHas('members', [ + 'subscription_id' => $subscription->id, + ]); } }