Skip to content

Commit f06ff66

Browse files
committed
test: repair for quilt 0.69
1 parent 99b055b commit f06ff66

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

t/t1802-import-quilt.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ check_test () {
2222
}
2323

2424
test_import_quilt_series_should_fail_p_something_ok () {
25-
quilt new -p $1 patch-p$1.diff
25+
quilt new "patch-p$1.diff"
2626
quilt add t
2727
echo 4 >t
28-
quilt refresh
28+
quilt refresh -p "$1"
2929

30-
quilt new -p $1 patch-p$1-s.diff
30+
quilt new "patch-p$1-s.diff"
3131
quilt add s/u
3232
echo 4 >s/u
33-
quilt refresh
33+
quilt refresh -p "$1"
3434
}
3535

3636
test_import_quilt_series_should_fail_p_something_unexpected () {
@@ -96,7 +96,7 @@ test_expect_success QUILT 'Import a quilt series with patches for toplevel files
9696
quilt add t &&
9797
echo 3 >t &&
9898
quilt refresh &&
99-
quilt new -p ab patch-pab.diff &&
99+
quilt new patch-pab.diff &&
100100
quilt add t &&
101101
echo 4 >t &&
102102
quilt refresh &&
@@ -118,7 +118,7 @@ test_expect_success QUILT 'Import a quilt series with patches for subdirectories
118118
quilt add s/u &&
119119
echo 3 >s/u &&
120120
quilt refresh &&
121-
quilt new -p ab patch-pab-s.diff &&
121+
quilt new patch-pab-s.diff &&
122122
quilt add s/u &&
123123
echo 4 >s/u &&
124124
quilt refresh &&

0 commit comments

Comments
 (0)