Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tractorcow committed Feb 27, 2019
1 parent 7835240 commit be7b229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/php/ORM/DataObjectSchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,9 @@ public function testWriteUniqueIndexes()
);

// Test a new record can be created without clashing with default value
$validObjcet = new AllIndexes();
$validObjcet->Number = 1;
$validObjcet->write();
$validObject = new AllIndexes();
$validObject->Number = 1;
$validObject->write();

$this->assertListEquals(
[
Expand Down

0 comments on commit be7b229

Please sign in to comment.