aboutsummaryrefslogtreecommitdiff
path: root/__tests__/index.js
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/index.js')
-rw-r--r--__tests__/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/__tests__/index.js b/__tests__/index.js
index a8e6e15..56158bb 100644
--- a/__tests__/index.js
+++ b/__tests__/index.js
@@ -534,7 +534,7 @@ test('alone brace', t => {
test('defaultValue true', t => {
const toParse = 'visible';
- const r = parse(toParse, 0, {defaultValue: "true"});
+ const r = parse(toParse, 0, {defaultValue: 'true'});
t.is(r.prop.visible, 'true');
t.is(r.eaten, 'visible');
});