Skip to content

Commit 546cec9

Browse files
committed
Update other tests to account for merge fix
1 parent 3fabd75 commit 546cec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/_test_helper.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function encrypt_named_file {
4343
if [ "$content" ]; then
4444
echo "$content" > $filename
4545
fi
46-
echo "$filename filter=crypt diff=crypt" >> .gitattributes
46+
echo "$filename filter=crypt diff=crypt merge=crypt" >> .gitattributes
4747
git add .gitattributes $filename
4848
git commit -m "Encrypt file $filename"
4949
}

tests/test_init.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ SETUP_SKIP_INIT_TRANSCRYPT=1
1717
init_transcrypt
1818
[ -f .gitattributes ]
1919
run cat .gitattributes
20-
[ "${lines[0]}" = "#pattern filter=crypt diff=crypt" ]
20+
[ "${lines[0]}" = "#pattern filter=crypt diff=crypt merge=crypt" ]
2121
}
2222

2323
@test "init: creates scripts in .git/crypt/" {

0 commit comments

Comments
 (0)