PG-603: Fix/Update String::Util module in TAP test perl. (#373)

Removed use of String::Util perl module from TAP test cases, and now using
Text::Trim module instead, as that is more stable. Also removed the
Data::Str2Num perl module as it was not needed any more.
This commit is contained in:
Naeem Akhter
2023-02-02 15:41:43 +05:00
committed by GitHub
parent 32b1219087
commit 4352d97af0
43 changed files with 22 additions and 56 deletions

View File

@@ -5,7 +5,7 @@ use warnings;
use File::Basename;
use File::Compare;
use File::Copy;
use String::Util qw(trim);
use Text::Trim qw(trim);
use Test::More;
use lib 't';
use pgsm;