From 3f4c50b7b2f9dcfb9060b6f38178b5650e5e47c5 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 16 Sep 2024 09:16:45 -0400 Subject: [PATCH] test: unskip float test for issue fixed in 3.43.1 --- test/test_database.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_database.rb b/test/test_database.rb index 205bedeb..19723478 100644 --- a/test/test_database.rb +++ b/test/test_database.rb @@ -664,7 +664,7 @@ def test_load_extension_error def test_raw_float_infinity # https://github.com/sparklemotion/sqlite3-ruby/issues/396 - skip if SQLite3::SQLITE_LOADED_VERSION >= "3.43.0" + skip if SQLite3::SQLITE_LOADED_VERSION == "3.43.0" db = SQLite3::Database.new ":memory:" db.execute("create table foo (temperature float)")