We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07981e9 commit 38ca0acCopy full SHA for 38ca0ac
DiffBackend/tests/test-utils.lisp
@@ -7,7 +7,11 @@
7
(in-package :diff-backend/tests/test-utils)
8
9
(defun deep-equal (obj1 obj2)
10
- (if (equal (type-of obj1) (type-of obj2))
+ (if (or (and (integerp obj1)
11
+ (integerp obj2))
12
+ (and (stringp obj1)
13
+ (stringp obj2))
14
+ (equal (type-of obj1) (type-of obj2)))
15
(if (typecase obj1
16
(standard-object
17
(loop :for slot :in (closer-mop:class-slots (class-of obj1))
0 commit comments