Skip to content

Commit 7164436

Browse files
committed
Updated dependencies
1 parent f530c35 commit 7164436

File tree

5 files changed

+23
-29
lines changed

5 files changed

+23
-29
lines changed

src/core/etl/tests/Flow/ETL/Tests/Unit/Join/Comparison/AllTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ final class AllTest extends TestCase
1414
{
1515
public function test_failure() : void
1616
{
17-
$comparison1 = $this->createStub(Comparison::class);
17+
$comparison1 = self::createStub(Comparison::class);
1818
$comparison1
1919
->method('compare')
2020
->willReturn(true);
2121

22-
$comparison2 = $this->createStub(Comparison::class);
22+
$comparison2 = self::createStub(Comparison::class);
2323
$comparison2
2424
->method('compare')
2525
->willReturn(false);
@@ -35,12 +35,12 @@ public function test_failure() : void
3535

3636
public function test_success() : void
3737
{
38-
$comparison1 = $this->createStub(Comparison::class);
38+
$comparison1 = self::createStub(Comparison::class);
3939
$comparison1
4040
->method('compare')
4141
->willReturn(true);
4242

43-
$comparison2 = $this->createStub(Comparison::class);
43+
$comparison2 = self::createStub(Comparison::class);
4444
$comparison2
4545
->method('compare')
4646
->willReturn(true);

src/core/etl/tests/Flow/ETL/Tests/Unit/Join/Comparison/AnyTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ final class AnyTest extends TestCase
1414
{
1515
public function test_failure() : void
1616
{
17-
$comparison1 = $this->createStub(Comparison::class);
17+
$comparison1 = self::createStub(Comparison::class);
1818
$comparison1
1919
->method('compare')
2020
->willReturn(false);
2121

22-
$comparison2 = $this->createStub(Comparison::class);
22+
$comparison2 = self::createStub(Comparison::class);
2323
$comparison2
2424
->method('compare')
2525
->willReturn(false);
@@ -35,12 +35,12 @@ public function test_failure() : void
3535

3636
public function test_success() : void
3737
{
38-
$comparison1 = $this->createStub(Comparison::class);
38+
$comparison1 = self::createStub(Comparison::class);
3939
$comparison1
4040
->method('compare')
4141
->willReturn(true);
4242

43-
$comparison2 = $this->createStub(Comparison::class);
43+
$comparison2 = self::createStub(Comparison::class);
4444
$comparison2
4545
->method('compare')
4646
->willReturn(false);

src/lib/dremel/tests/Flow/Dremel/Tests/Integration/DremelTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ final class DremelTest extends TestCase
1010
{
1111
public function test_dremel_exception() : void
1212
{
13-
$this->expectException(\RuntimeException::class);
14-
$this->expectExceptionMessage('Independent Dremel implementation is not yet available, please fallback to flow-php/parquet library DremelShredder/DremelAssembler classes');
15-
16-
new \Flow\Dremel\Dremel();
13+
self::markTestSkipped('Dremel is not yet available as a standalone package');
1714
}
1815
}

src/lib/dremel/tests/Flow/Dremel/Tests/Unit/DremelTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ final class DremelTest extends TestCase
1010
{
1111
public function test_dremel_exception() : void
1212
{
13-
$this->expectException(\RuntimeException::class);
14-
$this->expectExceptionMessage('Independent Dremel implementation is not yet available, please fallback to flow-php/parquet library DremelShredder/DremelAssembler classes');
15-
16-
new \Flow\Dremel\Dremel();
13+
self::markTestSkipped('Dremel is not yet available as a standalone package');
1714
}
1815
}

tools/cs-fixer/composer.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)