aboutsummaryrefslogtreecommitdiff
path: root/test/T150-tagging.sh
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-07-29 21:01:30 -0300
committerDavid Bremner <david@tethera.net>2020-08-01 20:27:30 -0300
commit99a7aac8f2af6f3adb8f816be46ee33eb1d57515 (patch)
tree4e56050b876b601164bfbf4e5436447493d4b738 /test/T150-tagging.sh
parent29a58ecf4a8859766861170cd6f7adec9441edea (diff)
test: drop use of db_ending
This will allow the dropping of the test for the default ending from configure.
Diffstat (limited to 'test/T150-tagging.sh')
-rwxr-xr-xtest/T150-tagging.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/T150-tagging.sh b/test/T150-tagging.sh
index 208b4b98..2f0b3531 100755
--- a/test/T150-tagging.sh
+++ b/test/T150-tagging.sh
@@ -305,9 +305,9 @@ test_begin_subtest "Tag name beginning with -"
test_expect_code 1 'notmuch tag +- One'
test_begin_subtest "Xapian exception: read only files"
-chmod u-w ${MAIL_DIR}/.notmuch/xapian/*.${db_ending}
+chmod u-w ${MAIL_DIR}/.notmuch/xapian/*.*
output=$(notmuch tag +something '*' 2>&1 | sed 's/: .*$//' )
-chmod u+w ${MAIL_DIR}/.notmuch/xapian/*.${db_ending}
+chmod u+w ${MAIL_DIR}/.notmuch/xapian/*.*
test_expect_equal "$output" "A Xapian exception occurred opening database"
test_done