From a523cacf6822245bac5da633d4ecdcfbf91e36a0 Mon Sep 17 00:00:00 2001 From: YuLe Date: Thu, 17 Jun 2021 01:24:12 +0800 Subject: [PATCH] Remove duplicate test case (#81) --- test.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test.js b/test.js index 7de03a1..56dfee1 100644 --- a/test.js +++ b/test.js @@ -18,7 +18,6 @@ test('camelCase', t => { t.is(camelCase('..foo..bar..'), 'fooBar'); t.is(camelCase('foo_bar'), 'fooBar'); t.is(camelCase('__foo__bar__'), 'fooBar'); - t.is(camelCase('__foo__bar__'), 'fooBar'); t.is(camelCase('foo bar'), 'fooBar'); t.is(camelCase(' foo bar '), 'fooBar'); t.is(camelCase('-'), '-');