Skip to content

Commit d914a1e

Browse files
committed
📝 Remove comments
1 parent 8de46cc commit d914a1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/helper/diff_helper.bash

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
#!/usr/bin/env bash
22

3-
# ファイルが一致するかどうかを確認する関数
43
assert_files_match() {
54
local generated_file="./$BASE_HOST$1"
65
local fixture_file="./fixture/$BASE_HOST$1"
76

87
diff_output=$(diff "$generated_file" "$fixture_file")
98
diff_status=$?
109

11-
[ "$diff_status" -eq 0 ] # diff コマンドが0を返した場合、ファイルは一致しています
10+
[ "$diff_status" -eq 0 ]
1211
}

0 commit comments

Comments
 (0)