Skip to content

Commit

Permalink
Fixing style errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
stickler-ci committed Aug 20, 2020
1 parent 61c4710 commit 3675e87
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/Phinx/Db/Adapter/SQLiteAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -963,21 +963,21 @@ public function testNullWithoutDefaultValue()
$cc = $columns[3];
$dd = $columns[4];

$this->assertEquals("aa", $aa->getName());
$this->assertEquals('aa', $aa->getName());
$this->assertTrue($aa->isNull());
$this->assertNull($aa->getDefault());

$this->assertEquals("bb", $bb->getName());
$this->assertEquals('bb', $bb->getName());
$this->assertFalse($bb->isNull());
$this->assertNull($bb->getDefault());

$this->assertEquals("cc", $cc->getName());
$this->assertEquals('cc', $cc->getName());
$this->assertTrue($cc->isNull());
$this->assertEquals("some1", $cc->getDefault());
$this->assertEquals('some1', $cc->getDefault());

$this->assertEquals("dd", $dd->getName());
$this->assertEquals('dd', $dd->getName());
$this->assertFalse($dd->isNull());
$this->assertEquals("some2", $dd->getDefault());
$this->assertEquals('some2', $dd->getDefault());
}

public function testDumpCreateTable()
Expand Down

0 comments on commit 3675e87

Please sign in to comment.