Skip to content

Commit

Permalink
fix: correct the wrong Assertion
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
  • Loading branch information
manticore-projects committed Apr 13, 2024
1 parent b03170e commit 8461e8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package net.sf.jsqlparser.expression;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.locationtech.jts.util.Assert;

class BinaryExpressionTest {

@Test
void testAddition() {
Expression addition = BinaryExpression.add(new LongValue(1), new LongValue(1));
Assert.equals("1 + 1", addition.toString());
Assertions.assertEquals("1 + 1", addition.toString());
}
}

0 comments on commit 8461e8a

Please sign in to comment.