summaryrefslogtreecommitdiffhomepage
path: root/tests/19_test_gbp_scripts_config.py
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@seravo.fi>2016-07-03 09:50:59 +0100
committerGuido Günther <agx@sigxcpu.org>2016-07-03 13:38:54 +0200
commitf28a26b4e7b279056f73f8171e83ea6f776860f8 (patch)
tree8ccc1c22c9bd484a8f7f501a04be97c550c96924 /tests/19_test_gbp_scripts_config.py
parentaf16f59214306b56ffc79e4c5c5a206561f9c3ff (diff)
Fix spelling of existant->existent in function names, strings and comments
Diffstat (limited to 'tests/19_test_gbp_scripts_config.py')
-rw-r--r--tests/19_test_gbp_scripts_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/19_test_gbp_scripts_config.py b/tests/19_test_gbp_scripts_config.py
index 9d0afd5f..1d5f9104 100644
--- a/tests/19_test_gbp_scripts_config.py
+++ b/tests/19_test_gbp_scripts_config.py
@@ -94,8 +94,8 @@ class TestGbpConfigCommand(unittest.TestCase):
self.assertEquals(printstub.result['%s.color' % cmd], 'auto')
self.assertEqual(ret, 0)
- def test_unexistent_cmds(self):
- """Unexisting commands should print no values"""
+ def test_nonexistent_cmds(self):
+ """Non-existing commands should print no values"""
for cmd in ["import_dscs", "supercommand"]:
printstub = self.AllValuesPrintStub(cmd)
ret = gbp.scripts.config.print_cmd_values(cmd, printstub)