Skip to content

Commit 399129d

Browse files
solar05bbatsov
authored andcommitted
Fix tests
1 parent 2aed0bb commit 399129d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.clj-kondo/config.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{:output {:progress true
2-
:exclude-files ["analysis.cljc" "meta.cljc"]}
2+
:exclude-files ["analysis.cljc" "meta.cljc" "inspect_test.clj"]}
33
:linters {:unused-private-var {:level :warning :exclude [orchard.query-test/a-private orchard.query-test/docd-fn]}}}
44

test/orchard/inspect_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238

239239
(deftype MyTestType [name]
240240
IMyTestType
241-
(get-name [_this] name))
241+
(get-name [this] name))
242242

243243
(defmethod inspect/inspect-value MyTestType [obj]
244244
(str "#<MyTestType " (get-name obj) ">"))

0 commit comments

Comments
 (0)