summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-01-01 12:03:22 +0200
committerLars Wirzenius <liw@liw.fi>2019-01-01 12:03:22 +0200
commit1a893d445228b18a5121d200a0207f22930ba5ce (patch)
tree507292ff3577be0410decdd678ddb3f504f5005d
parentea7b9bc1d3e5de362b5edf12603ee83c708ad1a1 (diff)
downloadvmdb2-1a893d445228b18a5121d200a0207f22930ba5ce.tar.gz
Fix: name of unit test to be clearer
-rw-r--r--vmdb/tags_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdb/tags_tests.py b/vmdb/tags_tests.py
index ff960b7..e4d342a 100644
--- a/vmdb/tags_tests.py
+++ b/vmdb/tags_tests.py
@@ -28,7 +28,7 @@ class TagsTests(unittest.TestCase):
tags = vmdb.Tags()
self.assertEqual(tags.get_tags(), [])
- def test_tells_if_tag_is_used(self):
+ def test_tells_if_tag_exists(self):
tags = vmdb.Tags()
self.assertFalse(tags.has_tag('foo'))
tags.append('foo')