From cedce02d62e5fdd351820c52d4317d64fb858ee0 Mon Sep 17 00:00:00 2001 From: Dejan Toteff Date: Tue, 5 Nov 2024 05:40:41 +0200 Subject: [PATCH] chore@small --- source/assocPath.spec.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/source/assocPath.spec.js b/source/assocPath.spec.js index 1dcc5615..3742b087 100644 --- a/source/assocPath.spec.js +++ b/source/assocPath.spec.js @@ -55,17 +55,6 @@ test('difference with ramda - doesn\'t overwrite primitive values with keys in t }) }) -test('bug 748', () => { - /* - https://github.com/selfrefactor/rambda/issues/748 - */ - const obj = {}; - let result = assocPathFn(['a', '2'], 3, obj) - let result1 = assocPath(['a', '2'], 3, obj) - console.log({result}) - console.log(result1) -}) - test('bug 524', () => { /* https://github.com/selfrefactor/rambda/issues/524