Skip to content

Commit ff85b55

Browse files
authored
Merge pull request #409 from 4zv4l/fix_test
2 parents 804d085 + e90ea09 commit ff85b55

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Whateverable.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ multi method irc-to-me(Message $msg where .text ~~ /:i^ [help|usage] ‘?’? \s
100100
multi method irc-to-me(Message $msg where .text ~~ /:i^ uptime \s* $/) {
101101
use nqp;
102102
use Telemetry;
103-
(denominate now - $*INIT-INSTANT) ~ ,
103+
(denominate (now - $*INIT-INSTANT).Int) ~ ,
104104
~ T<max-rss>.fmt(%.2f) ÷ 1024 ~ MiB maxrss.
105105
~ (with (nqp::getcomp("Raku") || nqp::getcomp("perl6")) {
106106
This is {.implementation} version {.config<version>}

xt/lib/Testable.rakumod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Testable {
7373
start $!irc-client.run;
7474
# The bridge client might be needed later. We don't start it yet.
7575
$!bridge-client = IRC::Client.new(
76-
:nick<raku-bridge>
76+
:nick<disbot>
7777
:host<127.0.0.1> :$port
7878
:channels(#whateverable_{$bot.lc}6)
7979
);

0 commit comments

Comments
 (0)