From fa6a2c70408f2d45b294626a51a31caf2f27c03b Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 26 Jan 2019 07:10:10 +0900 Subject: [PATCH] fixed no if conditions --- t/13_create_collation.t | 2 +- t/37_regexp.t | 2 +- t/43_fts3.t | 2 +- t/rt_73159_fts_tokenizer_segfault.t | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/t/13_create_collation.t b/t/13_create_collation.t index e86894d..a2a9d17 100644 --- a/t/13_create_collation.t +++ b/t/13_create_collation.t @@ -1,6 +1,6 @@ use strict; use warnings; -no if $] > 5.020, "warnings", "locale"; +no if $] >= 5.022, "warnings", "locale"; use lib "t/lib"; use SQLiteTest; use Test::More; diff --git a/t/37_regexp.t b/t/37_regexp.t index 8a94e95..1260578 100644 --- a/t/37_regexp.t +++ b/t/37_regexp.t @@ -1,6 +1,6 @@ use strict; use warnings; -no if $] > 5.020, "warnings", "locale"; +no if $] >= 5.022, "warnings", "locale"; use lib "t/lib"; use SQLiteTest; use Test::More; diff --git a/t/43_fts3.t b/t/43_fts3.t index 27a3bfe..934c8de 100644 --- a/t/43_fts3.t +++ b/t/43_fts3.t @@ -1,6 +1,6 @@ use strict; use warnings; -no if $] > 5.020, "warnings", "locale"; +no if $] >= 5.022, "warnings", "locale"; use lib "t/lib"; use SQLiteTest; use Test::More; diff --git a/t/rt_73159_fts_tokenizer_segfault.t b/t/rt_73159_fts_tokenizer_segfault.t index 9a4949e..fd2c1d3 100644 --- a/t/rt_73159_fts_tokenizer_segfault.t +++ b/t/rt_73159_fts_tokenizer_segfault.t @@ -1,6 +1,6 @@ use strict; use warnings; -no if $] > 5.020, "warnings", "locale"; +no if $] >= 5.022, "warnings", "locale"; use lib "t/lib"; use SQLiteTest; use Test::More;