Skip to content

Commit fea8ee7

Browse files
committed
fix: format check issues
Signed-off-by: Denis Golovin <dgolovin@redhat.com>
1 parent d8e0dcd commit fea8ee7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/authentication-service.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,7 @@ test('Authentication service handles decryption errors gracefully', async () =>
134134
expect(extensionContext.secrets.get).toHaveBeenCalledOnce();
135135

136136
// Verify warning message was shown to user
137-
expect(window.showWarningMessage).toHaveBeenCalledWith(
138-
expect.stringContaining('could not be restored'),
139-
'OK',
140-
);
137+
expect(window.showWarningMessage).toHaveBeenCalledWith(expect.stringContaining('could not be restored'), 'OK');
141138

142139
// Verify corrupted data was deleted
143140
expect(extensionContext.secrets.delete).toHaveBeenCalledOnce();

0 commit comments

Comments
 (0)