aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorAndrej Shadura <andrew.shadura@collabora.co.uk>2021-04-03 14:50:40 +0200
committerGuido Günther <agx@sigxcpu.org>2022-02-14 17:41:18 +0100
commit6acd556e2c4c604d71533ee94d2fdbc2b81fc0ed (patch)
treeb7849771fcb2ec5e2aa0962c14ae1d254996c1a4 /tests
parent8db5af7326c581014ca07dcd98beac30f2c90d4f (diff)
deb.git, scripts: Use cannot rather than can not for clarity
"Can not" may in some cases mean something different than "cannot", use "cannot" to make sure there are no misunderstandings. Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
Diffstat (limited to 'tests')
-rw-r--r--tests/component/deb/test_export_orig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/component/deb/test_export_orig.py b/tests/component/deb/test_export_orig.py
index 8ff75982..22e9fa9d 100644
--- a/tests/component/deb/test_export_orig.py
+++ b/tests/component/deb/test_export_orig.py
@@ -112,7 +112,7 @@ class TestExportOrig(ComponentTestBase):
'--component=foo',
'--pristine-tar'])
ok_(ret == 1, "Exporting tarballs must fail")
- self._check_log(-1, "gbp:error: Can not find pristine tar commit for archive 'hello-debhelper_2.8.orig.tar.gz'")
+ self._check_log(-1, "gbp:error: Cannot find pristine tar commit for archive 'hello-debhelper_2.8.orig.tar.gz'")
def test_tarball_dir_version_replacement(self):
"""Test that generating tarball from directory version substitution works"""
@@ -220,7 +220,7 @@ class TestExportOrig(ComponentTestBase):
'--pristine-tar',
'--upstream-signatures=on'])
ok_(ret == 1, "Exporting tarballs must fail")
- self._check_log(-1, "gbp:error: Can not find requested upstream signature for archive "
+ self._check_log(-1, "gbp:error: Cannot find requested upstream signature for archive "
"'hello-debhelper_2.6.orig.tar.gz' in pristine tar commit.")
@RepoFixtures.quilt30(opts=['--pristine-tar'])