Skip to content

Commit c208d9b

Browse files
committed
Fix wording in test
1 parent 51f636f commit c208d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/keybinding/test/browser/keybindingEditing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ suite('KeybindingsEditing', () => {
152152
instantiationService.stub(ITextFileService, 'isDirty', true);
153153
return testObject.editKeybinding(aResolvedKeybindingItem({ firstPart: { keyCode: KeyCode.Escape } }), 'alt+c', undefined)
154154
.then(() => assert.fail('Should fail with dirty error'),
155-
error => assert.strictEqual(error.message, 'Unable to write because the keybindings configuration file is dirty. Please save it first and then try again.'));
155+
error => assert.strictEqual(error.message, 'Unable to write because the keybindings configuration file has unsaved changes. Please save it first and then try again.'));
156156
});
157157

158158
test('errors cases - did not find an array', async () => {

0 commit comments

Comments
 (0)