Skip to content

Commit

Permalink
Update hash-tables.lsp
Browse files Browse the repository at this point in the history
eins zwei ...
  • Loading branch information
bileschi committed Mar 5, 2014
1 parent 1e48039 commit 6b4755f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koans/hash-tables.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@
(expected (make-hash-table :test #'equal)))
(setf (gethash "one" babel-fish) "uno")
(setf (gethash "two" babel-fish) "dos")
(setf (gethash "one" expected) "ein")
(setf (gethash "one" expected) "eins")
(setf (gethash "two" expected) "zwei")

(setf (gethash "one" babel-fish) "ein")
(setf (gethash "one" babel-fish) "eins")
(setf (gethash "two" babel-fish) ____)

(assert-true (equalp babel-fish expected))))
Expand Down

0 comments on commit 6b4755f

Please sign in to comment.