Skip to content

Commit

Permalink
remove unnecessary async keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Jun 19, 2024
1 parent c6e5d38 commit d8a1b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tokens/src/dictionary/domain/Dictionary.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ test('throws an error if the mode is not found in the FigmaApiResponse', () => {
);
});

test('creates a dictionary with string tokens', async () => {
test('creates a dictionary with string tokens', () => {
// GIVEN
const response: FigmaApiResponse = {
status: 200,
Expand Down Expand Up @@ -607,7 +607,7 @@ test('creates a dictionary with string tokens', async () => {
});
});

test('creates a dictionary with number tokens', async () => {
test('creates a dictionary with number tokens', () => {
// GIVEN
const response: FigmaApiResponse = {
status: 200,
Expand Down

0 comments on commit d8a1b27

Please sign in to comment.