summaryrefslogtreecommitdiff
path: root/test/integration/test-apt-cache-showsrc
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2019-07-10 16:15:30 +0200
committerDavid Kalnischkies <david@kalnischkies.de>2019-07-10 16:15:30 +0200
commit5cfbc5727dba2f4662d24cf4deb7cab7cdd57c14 (patch)
tree833d5b53bc16a93085b4afe855eaafed15981119 /test/integration/test-apt-cache-showsrc
parent2b734a7ec429825c7007c1093883229e069d36c7 (diff)
Fix typos reported by codespell in code comments
Also in old changelogs, but nothing really user visible like error messages or alike so barely noteworthy. Reported-By: codespell Gbp-Dch: Ignore
Diffstat (limited to 'test/integration/test-apt-cache-showsrc')
-rwxr-xr-xtest/integration/test-apt-cache-showsrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/test-apt-cache-showsrc b/test/integration/test-apt-cache-showsrc
index 88de077fc..d3f61d972 100755
--- a/test/integration/test-apt-cache-showsrc
+++ b/test/integration/test-apt-cache-showsrc
@@ -11,7 +11,7 @@ configarchitecture "i386"
insertsource 'unstable' 'foo' 'all' '1.0' '' 'foo-binary'
# and a similar one that builds a foo binary package
-insertsource 'unstable' 'unreleated' 'all' '1.0' '' 'foo'
+insertsource 'unstable' 'unrelated' 'all' '1.0' '' 'foo'
# just here to workaround the need for a authenticated package
insertpackage 'unstable' 'workaround' 'all' '1.0'
@@ -22,10 +22,10 @@ setupaptarchive
# and show all matches
aptcache showsrc foo > output.txt
testsuccess grep "Package: foo" output.txt
-testsuccess grep "Package: unreleated" output.txt
+testsuccess grep "Package: unrelated" output.txt
# by default apt-cache showsrc will look into "binary" and "source" names
# and show all matches
aptcache showsrc --only-source foo > output.txt
testsuccess grep "Package: foo" output.txt
-testfailure grep "Package: unreleated" output.txt
+testfailure grep "Package: unrelated" output.txt