Skip to content

Commit

Permalink
style: 💄 Uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
mpyw authored Nov 26, 2021
1 parent 93da5d8 commit ba698b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/DetectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function testDuplicateUniqueKeyViolated(): void
public function testDuplicateUniqueIndexViolated(): void
{
$this->pdo->exec("CREATE TABLE users(id INTEGER PRIMARY KEY, name VARCHAR(255) NOT NULL)");
$this->pdo->exec('CREATE UNIQUE INDEX users_name_unique on users(name)');
$this->pdo->exec('CREATE UNIQUE INDEX users_name_unique ON users(name)');
$this->pdo->exec("INSERT INTO users(id, name) VALUES(1, 'example')");

try {
Expand Down

0 comments on commit ba698b9

Please sign in to comment.