Commit 2c2cdd90 authored by Bas Peeters's avatar Bas Peeters

Call non-static functions dynamically

parent f0aca96d
...@@ -617,7 +617,7 @@ class ComparatorTest extends TestCase ...@@ -617,7 +617,7 @@ class ComparatorTest extends TestCase
$c = new Comparator(); $c = new Comparator();
$diff = $c->compare($schemaA, $schemaB); $diff = $c->compare($schemaA, $schemaB);
self::assertSchemaTableChangeCount($diff, 1, 0, 1); $this->assertSchemaTableChangeCount($diff, 1, 0, 1);
} }
public function testSequencesCaseInsensitive() : void public function testSequencesCaseInsensitive() : void
...@@ -637,7 +637,7 @@ class ComparatorTest extends TestCase ...@@ -637,7 +637,7 @@ class ComparatorTest extends TestCase
$c = new Comparator(); $c = new Comparator();
$diff = $c->compare($schemaA, $schemaB); $diff = $c->compare($schemaA, $schemaB);
self::assertSchemaSequenceChangeCount($diff, 1, 0, 1); $this->assertSchemaSequenceChangeCount($diff, 1, 0, 1);
} }
public function testCompareColumnCompareCaseInsensitive() : void public function testCompareColumnCompareCaseInsensitive() : void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment