Skip to content

Commit

Permalink
chore: fix files
Browse files Browse the repository at this point in the history
  • Loading branch information
khru committed Sep 13, 2023
1 parent f4f9a48 commit a16b4f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
root = true

[*]
[**.sh]
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 120

[{Makefile,**.mk}]
indent_style = tab
max_line_length = off
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
custom: ["https://chemaclass.com/sponsor"]
custom: ["https://chemaclass.com/sponsor"]
6 changes: 5 additions & 1 deletion tests/unit/assert_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,11 @@ function test_unsuccessful_assertArrayContains() {
local distros=(Ubuntu 1234 Linux\ Mint)

assertEquals\
"$(printFailedTest "Unsuccessful assertArrayContains" "Ubuntu 1234 Linux Mint" "to contain" "a_non_existing_element")"\
"$(printFailedTest\
"Unsuccessful assertArrayContains"\
"Ubuntu 1234 Linux Mint"\
"to contain"\
"a_non_existing_element")"\
"$(assertArrayContains "a_non_existing_element" "${distros[@]}")"
assertGeneralError "$(assertArrayContains "a_non_existing_element" "${distros[@]}")"
}
Expand Down

0 comments on commit a16b4f7

Please sign in to comment.