diff options
author | Matias Linares <matiaslina@gmail.com> | 2021-01-11 22:45:25 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2021-01-11 22:45:25 -0300 |
commit | 289165e26df8830a15b6df1a63321583a2e67499 (patch) | |
tree | 766ea3501139019ad10f0d675d15ece8f00589d3 /t/20-client.t | |
parent | 7be9fa68bef82a7576344a6e8cc1e51154c6b3bf (diff) | |
download | perl6-matrix-client-289165e26df8830a15b6df1a63321583a2e67499.tar.gz |
[test] Fix with refactor
Diffstat (limited to 't/20-client.t')
-rw-r--r-- | t/20-client.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/20-client.t b/t/20-client.t index 2215a6b..c15d86f 100644 --- a/t/20-client.t +++ b/t/20-client.t @@ -55,12 +55,12 @@ subtest 'User data' => { subtest 'sync' => { plan 3; - isa-ok $client.sync(), Matrix::Response::Sync, + isa-ok $client.sync(), Matrix::Client::Response::Sync, 'sync without params is a Response'; isa-ok $client.sync(:sync-filter('{"room": { "timeline": { "limit": 1 } } }')), - Matrix::Response::Sync, 'sync with Str sync-filter'; + Matrix::Client::Response::Sync, 'sync with Str sync-filter'; isa-ok $client.sync(:sync-filter(room => timeline => limit => 1)), - Matrix::Response::Sync, 'sync wit Hash sync-filter'; + Matrix::Client::Response::Sync, 'sync wit Hash sync-filter'; } subtest 'directory' => { |