Skip to content

Commit d8ced70

Browse files
committed
fix: linter
1 parent 892c1f6 commit d8ced70

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/unit/test_doubles_test.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,18 +148,20 @@ function test_spy_called_with_different_arguments() {
148148
assert_have_been_called_with "second" ps 2
149149
}
150150

151-
function test_successful_not_called() {
151+
function test_spy_successful_not_called() {
152152
spy ps
153153

154154
assert_not_called ps
155155
}
156156

157-
function test_unsuccessful_not_called() {
157+
function test_spy_unsuccessful_not_called() {
158158
spy ps
159159

160160
ps
161161

162162
assert_same \
163-
"$(console_results::print_failed_test \"Unsuccessful not called\" \"ps\" \"to has been called\" \"0 times\" \"actual\" \"1 times\")" \
163+
"$(console_results::print_failed_test "Unsuccessful not called" "ps" \
164+
"to has been called" "0 times" \
165+
"actual" "1 times")" \
164166
"$(assert_not_called ps)"
165167
}

0 commit comments

Comments
 (0)