diff options
author | Matias Linares <matiaslina@gmail.com> | 2020-11-23 19:52:11 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2020-11-23 19:52:11 -0300 |
commit | 346f058b08e3c0b911243f59996cd0ef635ae211 (patch) | |
tree | 21bdbca708d46cbaa34dcf183dd48b66fb8fd9bc /t/40-response.t | |
parent | 4cd5b4da65ee1d94ea8b6ce54e990e0bdda99053 (diff) | |
download | perl6-matrix-client-346f058b08e3c0b911243f59996cd0ef635ae211.tar.gz |
Fix tests
Diffstat (limited to 't/40-response.t')
-rw-r--r-- | t/40-response.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/40-response.t b/t/40-response.t index 8bc3569..c401378 100644 --- a/t/40-response.t +++ b/t/40-response.t @@ -30,7 +30,7 @@ subtest 'Sync', { subtest 'MediaStore', { plan 4; my %config = 'm.upload.size' => 5000; - my $config-response = Matrix::Response::MediaStore::Config.new(|%config); + my $config-response = Matrix::Response::MediaStore::Config.new(%config); isa-ok $config-response, Matrix::Response::MediaStore::Config; can-ok $config-response, 'upload-size'; |