Skip to content

Commit e286a07

Browse files
committed
fix: linter changelog
1 parent 0592931 commit e286a07

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767

6868
- Improve `assert_have_been_called_with` with strict argument matching
6969
- Make Windows install clearer in the docs by adding an option for Linux/Mac and another one for Windows.
70-
- Add support for empty values and values containing spaces, tabs or newlines in data providers via new `data_set` function
71-
- Document workaround for global function name collisions when sourcing scripts in tests by copying the original function
70+
- Add data_set function for empty values and values with spaces/tabs/newlines
71+
- Document workaround for function name collisions when sourcing scripts
7272
- Fix `temp_dir` and `temp_file` data not being cleaned up when created in `set_up_before_script`
7373
- Fix `/tmp/bashunit/parallel` not being cleaned after test run
7474

src/main.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ function main::cmd_test() {
6767
exit 0
6868
;;
6969
--show-skipped)
70-
BASHUNIT_SHOW_SKIPPED=true
70+
export BASHUNIT_SHOW_SKIPPED=true
7171
;;
7272
--show-incomplete)
73-
BASHUNIT_SHOW_INCOMPLETE=true
73+
export BASHUNIT_SHOW_INCOMPLETE=true
7474
;;
7575
*)
7676
raw_args+=("$1")

0 commit comments

Comments
 (0)