From dd5a11a61f5e056aecb2e82294a2d7a8f691585b Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Mon, 24 May 2021 23:28:46 +0200 Subject: [PATCH] updated TestCall.php to store multiple datasets Took 1 hour 59 minutes --- src/PendingObjects/TestCall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PendingObjects/TestCall.php b/src/PendingObjects/TestCall.php index cd65ae76..b6547596 100644 --- a/src/PendingObjects/TestCall.php +++ b/src/PendingObjects/TestCall.php @@ -81,7 +81,7 @@ final class TestCall */ public function with($data): TestCall { - $this->testCaseFactory->dataset = $data; + $this->testCaseFactory->datasets[] = $data; return $this; }