Skip to content

Commit

Permalink
Spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahzinger committed Oct 6, 2023
1 parent 5fadb03 commit f291b54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/athena/routes/routes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func TestRoutes_ExternalId(t *testing.T) {
require.Equal(t, http.StatusOK, resp.StatusCode)
require.Equal(t, `{"externalId":"a fake external id"}`, string(body))
})
t.Run("it returns an empty string if there is no externalid set in the env", func(t *testing.T) {
t.Run("it returns an empty string if there is no external id set in the env", func(t *testing.T) {
rh := setupHandler()
resp, body, err := hitRoute(rh, "/externalId", []byte{})

Expand Down
2 changes: 1 addition & 1 deletion src/ConfigEditor.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('ConfigEditor', () => {
});
});

it('should fetch and display externalId when the authtype is grafana_assume_role', async () => {
it('should fetch and display externalId when the auth type is grafana_assume_role', async () => {
setUpMockBackendServer({
put: jest.fn().mockResolvedValue({ datasource: {} }),
post: jest.fn().mockResolvedValue({ externalId: 'fake-external-id' }),
Expand Down

0 comments on commit f291b54

Please sign in to comment.