diff --git a/test/Settings.ts b/test/Settings.ts index eb4e90921e..5fd113f154 100644 --- a/test/Settings.ts +++ b/test/Settings.ts @@ -910,14 +910,14 @@ ava('Settings#update (Uninitialized)', async (test): Promise => { test.plan(1); const { settings } = test.context; - await test.throwsAsync(() => settings.update('count', 6), { message: 'Cannot reset keys from an unsynchronized settings instance. Perhaps you want to call `sync()` first.' }); + await test.throwsAsync(() => settings.update('count', 6), { message: 'Cannot update values from an unsynchronized settings instance. Perhaps you want to call `sync()` first.' }); }); ava('Settings#update (Unsynchronized)', async (test): Promise => { test.plan(1); const { settings } = test.context; - await test.throwsAsync(() => settings.update('count', 6), { message: 'Cannot reset keys from an unsynchronized settings instance. Perhaps you want to call `sync()` first.' }); + await test.throwsAsync(() => settings.update('count', 6), { message: 'Cannot update values from an unsynchronized settings instance. Perhaps you want to call `sync()` first.' }); }); ava('Settings#update (Invalid Key)', async (test): Promise => {