From 5aca46b6c4be2d5baac12ea40dc6188f90049f47 Mon Sep 17 00:00:00 2001 From: "A. Sinan Unur" Date: Mon, 23 Nov 2015 10:40:38 -0500 Subject: [PATCH] Fix version check against 3.7.11 so the test runs A typo in the version number in `t/59_extended_result_codes.t` causes test to be skipped. In the test file, 3.7.11 is encoded as `3071100`. The correct construction is `3007011`. See also https://www.nu42.com/2015/11/tests-never-ran.html --- t/59_extended_result_codes.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/59_extended_result_codes.t b/t/59_extended_result_codes.t index 826d0a9..21124f3 100644 --- a/t/59_extended_result_codes.t +++ b/t/59_extended_result_codes.t @@ -12,7 +12,7 @@ use DBD::SQLite; BEGIN{ plan skip_all => 'this test is for Win32 only' unless $^O eq 'MSWin32'; - plan skip_all => 'this test requires SQLite 3.7.12 and above' unless $DBD::SQLite::sqlite_version_number > 3071100; + plan skip_all => 'this test requires SQLite 3.7.12 and above' unless $DBD::SQLite::sqlite_version_number > 3007011; } use Test::NoWarnings;