You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/Foundation/FoundationInteractsWithDatabaseTest.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -325,7 +325,7 @@ public function testGetTableNameFromModel()
325
325
326
326
publicfunctiontestExpectsDatabaseQueryCount()
327
327
{
328
-
$case = newclassextends TestingTestCase
328
+
$case = newclass('foo')extends TestingTestCase
329
329
{
330
330
use CreatesApplication;
331
331
@@ -339,7 +339,7 @@ public function testExpectsDatabaseQueryCount()
339
339
$case->testExpectsDatabaseQueryCount();
340
340
$case->tearDown();
341
341
342
-
$case = newclassextends TestingTestCase
342
+
$case = newclass('foo')extends TestingTestCase
343
343
{
344
344
use CreatesApplication;
345
345
@@ -359,7 +359,7 @@ public function testExpectsDatabaseQueryCount()
359
359
$this->assertSame("Expected 3 database queries on the [testing] connection. 0 occurred.\nFailed asserting that 3 is identical to 0.", $e->getMessage());
0 commit comments