Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
devth committed Aug 4, 2024
1 parent 402a11b commit e61976f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/yetibot/core/test/interpreter.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"about handle-cmd"
(fact
"handles legit echo command and returns command args"
(i/handle-cmd "echo hello world" {}) =>
(i/handle-cmd "echo hello world" {}) =>
{:result/value "hello world"
:result/data {:args "hello world" :cmd "echo" :match "hello world"})
:result/data {:args "hello world" :cmd "echo" :match "hello world"}})
(fact
"handles un-handleable non-legit 'somerandom' command with fallback? true"
(i/handle-cmd "somerandom command" {:fallback? true})
Expand Down

0 comments on commit e61976f

Please sign in to comment.