aboutsummaryrefslogtreecommitdiff
path: root/t/20-client.t
diff options
context:
space:
mode:
Diffstat (limited to 't/20-client.t')
-rw-r--r--t/20-client.t6
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' => {