Skip to content

Commit

Permalink
fixed faling tests
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed Jan 7, 2021
1 parent 3d8691f commit 70529a2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ describe('API Keys', () => {
});
expect(mockScopedClusterClient.asCurrentUser.security.invalidateApiKey).toHaveBeenCalledWith({
body: {
id: '123',
ids: ['123'],
},
});
});
Expand All @@ -345,7 +345,7 @@ describe('API Keys', () => {
});
expect(mockScopedClusterClient.asCurrentUser.security.invalidateApiKey).toHaveBeenCalledWith({
body: {
id: '123',
ids: ['123'],
},
});
});
Expand Down Expand Up @@ -378,7 +378,7 @@ describe('API Keys', () => {
});
expect(mockClusterClient.asInternalUser.security.invalidateApiKey).toHaveBeenCalledWith({
body: {
id: '123',
ids: ['123'],
},
});
});
Expand All @@ -405,7 +405,7 @@ describe('API Keys', () => {
});
expect(mockClusterClient.asInternalUser.security.invalidateApiKey).toHaveBeenCalledWith({
body: {
id: '123',
ids: ['123'],
},
});
});
Expand Down

0 comments on commit 70529a2

Please sign in to comment.