From 5b9bfe377a4905dc7e233fb9dd9c7ba44d30693b Mon Sep 17 00:00:00 2001 From: Fernando Correa de Oliveira Date: Mon, 26 Nov 2018 14:23:08 -0200 Subject: [PATCH] Fix macosx supply test --- S17-supply/watch-path.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S17-supply/watch-path.t b/S17-supply/watch-path.t index d224ab7e9e..4bc08ae560 100644 --- a/S17-supply/watch-path.t +++ b/S17-supply/watch-path.t @@ -35,7 +35,7 @@ sub macosx (:$io-path) { my $s = ( $io-path ?? $base-path.IO.watch !! IO::Notification.watch-path: $base-path ).grep({.path.IO.basename eq $filename}).unique; - isa-ok $s ~~ Supply, 'Did we get a Supply?'; + isa-ok $s, Supply, 'Did we get a Supply?'; my @seen; my $check-event = -> \change { flunk 'not setup yet'; };