From b791aaf8cfc082165b4f6aee9c5229961f87c7b8 Mon Sep 17 00:00:00 2001 From: Johannes Schobel Date: Thu, 5 Apr 2018 18:17:00 +0200 Subject: [PATCH] Fix (#93) - add `transactionalCall()`, - small change to test - make `"use apiato caller style"` message optional (via config file) --- Abstracts/Tests/PhpUnit/TestCase.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Abstracts/Tests/PhpUnit/TestCase.php b/Abstracts/Tests/PhpUnit/TestCase.php index 2f229e3e5..7a52ff456 100644 --- a/Abstracts/Tests/PhpUnit/TestCase.php +++ b/Abstracts/Tests/PhpUnit/TestCase.php @@ -53,9 +53,7 @@ public function setUp() */ public function tearDown() { - $this->usingInMemoryDatabase() - ? $this->artisan('migrate:reset') - : parent::tearDown(); + parent::tearDown(); } /**