Skip to content

Commit

Permalink
Fixed more includes.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Mar 7, 2024
1 parent 64b864e commit a9f5fa0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ltest-formatter.lfe
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defmodule ltest-formatter
(export all))

(include-lib "include/ltest-records.lfe")
(include-lib "ltest/include/ltest-records.lfe")

(defun test-suite-header (state)
(io:format (get-suite-header state)))
Expand Down
2 changes: 1 addition & 1 deletion src/ltest-listener.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(behaviour eunit_listener)
(export all))

(include-lib "include/ltest-records.lfe")
(include-lib "ltest/include/ltest-records.lfe")

(defun start ()
(start '()))
Expand Down
2 changes: 1 addition & 1 deletion src/ltest-runner.lfe
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defmodule ltest-runner
(export all))

(include-lib "include/ltest-records.lfe")
(include-lib "ltest/include/ltest-records.lfe")

(defun all ()
(let ((state (make-state color? 'true)))
Expand Down
2 changes: 1 addition & 1 deletion src/ltest-util.lfe
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defmodule ltest-util
(export all))

(include-lib "include/ltest-records.lfe")
(include-lib "ltest/include/ltest-records.lfe")

(defun file->beam (bin-data)
(ltest-util:rebar-debug "bin-data (file->beam): ~p" (list bin-data))
Expand Down
4 changes: 2 additions & 2 deletions src/ltest.lfe
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defmodule ltest
(export all))

(include-lib "include/ltest-macros.lfe")
(include-lib "include/ltest-records.lfe")
(include-lib "ltest/include/ltest-macros.lfe")
(include-lib "ltest/include/ltest-records.lfe")

(defun skip-test-patt () ".*_skip")
(defun skip-test-group-patt () "(.*)(_skip)")
Expand Down

0 comments on commit a9f5fa0

Please sign in to comment.