Skip to content

Commit

Permalink
fix: import typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamorosi committed Sep 27, 2023
1 parent 369d63d commit 7d953d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/testing/src/resources/TestNodejsFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TEST_RUNTIMES, TEST_ARCHITECTURES } from '../constants';
import {
concatenateResourceName,
getRuntimeKey,
getArchitecture,
getArchitectureKey,
} from '../helpers';
import type { TestStack } from '../TestStack';
import type { ExtraTestProps, TestNodejsFunctionProps } from './types';
Expand All @@ -33,7 +33,7 @@ class TestNodejsFunction extends NodejsFunction {
resourceName: extraProps.nameSuffix,
}),
runtime: TEST_RUNTIMES[getRuntimeKey()],
architecture: TEST_ARCHITECTURES[getArchitecture()],
architecture: TEST_ARCHITECTURES[getArchitectureKey()],
logRetention: RetentionDays.ONE_DAY,
});

Expand Down

0 comments on commit 7d953d8

Please sign in to comment.