Skip to content

Commit f6b2a27

Browse files
committed
Fix test failures caused by lexcial require
1 parent d33ee8e commit f6b2a27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

t/01-Basic.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ my \drvs = <Oracle Pg SQLite TestMock mysql>;
77
plan drvs.elems * 6 + 8;
88

99
use DBIish;
10+
use DBDish;
1011

1112
my \DBIish-class = ::('DBIish');
1213
ok DBIish-class !~~ Failure, "Class is available";
@@ -26,7 +27,7 @@ for drvs {
2627
$drv = DBIish.install-driver($_);
2728
}, "Can install driver for '$_'";
2829
ok $drv.defined, "Is an instance '$drv'";
29-
ok $drv ~~ ::('DBDish::Driver'), "{$drv.^name} indeed a driver";
30+
ok $drv ~~ DBDish::Driver, "{$drv.^name} indeed a driver";
3031
with $drv.^ver {
3132
ok $_, "Driver version $_";
3233
} else { flunk 'version declared' };

0 commit comments

Comments
 (0)