Skip to content

Commit

Permalink
remove irrelevant test
Browse files Browse the repository at this point in the history
  • Loading branch information
francozanini committed May 28, 2023
1 parent eb97397 commit 482096f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void Lexer::readChar() {
}

M::Token *Lexer::nextToken() {
M::Token *token = nullptr;
M::Token *token;

this->skipWhitespace();

Expand Down Expand Up @@ -145,10 +145,6 @@ std::string Lexer::readInteger() {
return literal;
}

TEST_CASE("test") {
CHECK_EQ(5, 5);
}

TEST_CASE("ALL_TOKENS") {
enum M::TokenType expectedTokens[] = {
M::TokenType::LET, M::TokenType::IDENTIFIER, M::TokenType::ASSIGN,
Expand Down

0 comments on commit 482096f

Please sign in to comment.