From 171b34e9d3b38111bf3d909bf2f0e1467c6a5053 Mon Sep 17 00:00:00 2001 From: Ivan Milosavljevic Date: Tue, 16 Aug 2022 18:52:51 +0200 Subject: [PATCH] Replace "the the" -> "the" (#3291) --- test/assocPath.js | 2 +- test/unwind.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/assocPath.js b/test/assocPath.js index ff03625b6..425d5056c 100644 --- a/test/assocPath.js +++ b/test/assocPath.js @@ -33,7 +33,7 @@ describe('assocPath', function() { eq(obj2, {a: {b: 42}}); }); - it('empty path replaces the the whole object', function() { + it('empty path replaces the whole object', function() { eq(R.assocPath([], 3, {a: 1, b: 2}), 3); }); diff --git a/test/unwind.js b/test/unwind.js index 407eb1e37..27699fb42 100644 --- a/test/unwind.js +++ b/test/unwind.js @@ -25,7 +25,7 @@ describe('unwind', function() { eq(R.unwind('hobby', object), [object]); }); - it('returns a list containing only the original object if the the value for that key is not iterable', function() { + it('returns a list containing only the original object if the value for that key is not iterable', function() { eq(R.unwind('passtimes', object), [object]); eq(R.unwind('options', { title: 'What is the best programming language?',