Skip to content

Commit

Permalink
Remove @disabled from working test
Browse files Browse the repository at this point in the history
  • Loading branch information
seonWKim committed Feb 7, 2025
1 parent 400dd6d commit 9f7d23d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import java.util.stream.Stream;
import org.github.tursodatabase.TestUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
Expand Down Expand Up @@ -241,7 +240,6 @@ void test_getInt_returns_zero_on_null() throws Exception {
}

@Test
@Disabled("limbo has a bug which sees -9223372036854775808 as double")
void test_getLong() throws Exception {
stmt.executeUpdate("CREATE TABLE test_long (long_col BIGINT);");
stmt.executeUpdate("INSERT INTO test_long (long_col) VALUES (1234567890);");
Expand All @@ -253,6 +251,7 @@ void test_getLong() throws Exception {
ResultSet resultSet = stmt.executeQuery("SELECT * FROM test_long");

// Test typical long value
assertTrue(resultSet.next());
assertEquals(1234567890L, resultSet.getLong(1));

// Test maximum long value
Expand Down

0 comments on commit 9f7d23d

Please sign in to comment.