Commit 5754fd17 authored by Guilherme Blanco's avatar Guilherme Blanco

phpcs

parent c285b75b
......@@ -825,12 +825,12 @@ abstract class AbstractPlatformTestCase extends TestCase
public function testGetSequencePrefixWithoutSchema() : void
{
self::assertEquals("foo", $this->platform->getSequencePrefix("foo"));
self::assertEquals('foo', $this->platform->getSequencePrefix('foo'));
}
public function testGetSequencePrefixWithSchema() : void
{
self::assertEquals("bar.foo", $this->platform->getSequencePrefix("foo", "bar"));
self::assertEquals('bar.foo', $this->platform->getSequencePrefix('foo', 'bar'));
}
/**
......
......@@ -827,6 +827,6 @@ class SqlitePlatformTest extends AbstractPlatformTestCase
public function testGetSequencePrefixWithSchema() : void
{
self::assertEquals("bar__foo", $this->platform->getSequencePrefix("foo", "bar"));
self::assertEquals('bar__foo', $this->platform->getSequencePrefix('foo', 'bar'));
}
}
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