Skip to content

Commit 48525ba

Browse files
committed
uses IO::String 🐛 and substitutes again
I can't figure out how this was working without including it, but here you go...
1 parent 348a68c commit 48525ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

t/80_diag.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use Slang::Tuxic;
55

66
use Test;
77
use Text::CSV;
8+
use Text::IO::String;
89

910
my %err;
1011

@@ -126,7 +127,7 @@ for (Str, # No spec at all
126127
my $csv = Text::CSV.new;
127128
my $e;
128129
my @r;
129-
{ @r = $csv.fragment (IO::String.new (""), $spec);
130+
{ @r = $csv.fragment (Text::IO::String.new (""), $spec);
130131
CATCH { default { $e = $_; 1; }}
131132
}
132133
#$csv.error-diag;

0 commit comments

Comments
 (0)