Skip to content

Commit

Permalink
Return a list from behaviour info function instead of undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Goff authored and oubiwann committed Feb 19, 2024
1 parent aaad780 commit ba86054
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ltest-integration.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(defun behaviour_info
(('callbacks)
'undefined)
'())
((_)
'undefined))

Expand Down
2 changes: 1 addition & 1 deletion src/ltest-system.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(defun behaviour_info
(('callbacks)
'undefined)
'())
((_)
'undefined))

Expand Down
2 changes: 1 addition & 1 deletion src/ltest-unit.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(defun behaviour_info
(('callbacks)
'undefined)
'())
((_)
'undefined))

Expand Down

0 comments on commit ba86054

Please sign in to comment.