Skip to content

Commit 26cd837

Browse files
committed
Fix eslint complaint
1 parent eaedbde commit 26cd837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe('configuration API', () => {
4545
test('passes existing config out to config function', () => {
4646
// Create a new config key based on the value of an existing one
4747
configure(existingConfig => ({
48-
newKey: existingConfig.testIdAttribute + '-derived',
48+
newKey: `${existingConfig.testIdAttribute}-derived`,
4949
}))
5050
const conf = getConfig()
5151

0 commit comments

Comments
 (0)