From 281edcc38f451172f9a0914d111815ec5be1bba3 Mon Sep 17 00:00:00 2001 From: Wilhelm Schuermann Date: Sun, 8 Mar 2015 10:26:46 +0100 Subject: [PATCH] Unit Tests - The Sith must never be allowed to regain their power over us. --- test/filter-prefix.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/filter-prefix.t b/test/filter-prefix.t index 00e9f62ae..c55061725 100755 --- a/test/filter-prefix.t +++ b/test/filter-prefix.t @@ -88,7 +88,7 @@ class TestFilterPrefix(TestCase): self.assertIn('seven', out) self.assertIn('eight', out) - def test_list_project_startwsith_bar(self): + def test_list_project_startswith_bar(self): """Filter on project name start.""" code, out, err = self.t(('list', 'project.startswith:bar')) self.assertNotIn('one', out) @@ -124,7 +124,7 @@ class TestFilterPrefix(TestCase): self.assertNotIn('seven', out) self.assertNotIn('eight', out) - def test_list_descrtiption_has_foo(self): + def test_list_description_has_foo(self): """Filter on description pattern.""" code, out, err = self.t(('list', 'description.has:foo')) self.assertIn('one', out)