Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
peldax committed Nov 4, 2020
1 parent 99e779a commit 48d06e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Tokenizer/TokenContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function testSimple() : void
self::assertSame($tokenizer->peekNext()->getType(), TokenType::SQU_C);
self::assertSame($tokenizer->getNext()->getType(), TokenType::SQU_C);
self::assertSame($tokenizer->getPrev()->getType(), TokenType::SQU_O);
self::assertSame($tokenizer->assertNext(TokenType::SQU_C, \Exception::class)->getType(), TokenType::SQU_C);
self::assertSame($tokenizer->assertNext(TokenType::SQU_C, \RuntimeException::class)->getType(), TokenType::SQU_C);
}

public function testIterator() : void
Expand Down

0 comments on commit 48d06e4

Please sign in to comment.