spelling: nonexistent

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-03-25 22:04:51 -04:00
parent 66332394fb
commit 6f0364d6bf
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class DBStructureTest extends DatabaseTest
*/
public function testExists() {
self::assertTrue(DBStructure::existsTable('user'));
self::assertFalse(DBStructure::existsTable('notatable'));
self::assertFalse(DBStructure::existsTable('nonexistent'));
self::assertTrue(DBStructure::existsColumn('user', ['uid']));
self::assertFalse(DBStructure::existsColumn('user', ['nonsense']));