Skip to content

Commit 9513215

Browse files
committed
Fix wrong transactions test calls
1 parent d1c5f36 commit 9513215

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/UnifiedSpecTests/UnifiedSpecTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ public function provideGridFSTests()
7373
/**
7474
* @dataProvider provideTransactionsTests
7575
*/
76-
public function testTransactions(...$args)
76+
public function testTransactions(UnifiedTestCase $test)
7777
{
78-
$this->doTestCase(...$args);
78+
self::$runner->run($test);
7979
}
8080

8181
public function provideTransactionsTests()
8282
{
83-
return $this->provideTests(__DIR__ . '/transactions');
83+
return $this->provideTests(__DIR__ . '/transactions/*.json');
8484
}
8585

8686
/**

0 commit comments

Comments
 (0)