Skip to content

Commit

Permalink
fix token test
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Apr 1, 2024
1 parent e8535a3 commit 3c8719e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Command/System/TokenCommandTest.php
Expand Up @@ -60,7 +60,7 @@ public function testCommand()
$this->assertEquals('Backend', $data['App']);
$this->assertEquals('Administrator', $data['User']);
$this->assertNotEmpty($data['Token']);
$this->assertEquals(2678400, $data['Expires']);
$this->assertTrue($data['Expires'] > 0);
$this->assertEquals('backend,authorization', $data['Scope']);
}
}

0 comments on commit 3c8719e

Please sign in to comment.