Skip to content

Commit

Permalink
Merge 'bindings/java: Remove @disabled from working test ' from Kim S…
Browse files Browse the repository at this point in the history
…eon Woo

Closes #919
  • Loading branch information
penberg committed Feb 7, 2025
2 parents 808ae4e + 9f7d23d commit 8787ed1
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 8787ed1

Please sign in to comment.