We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7616b3 commit ac10c26Copy full SHA for ac10c26
q2cli/tests/test_tools.py
@@ -587,12 +587,12 @@ def test_cache_remove(self):
587
self.assertFalse('key' in self.cache.get_keys())
588
589
def test_cache_remove_multiple(self):
590
- self.cache.save(self.art1, 'key1')
591
- self.cache.save(self.art1, 'key2')
592
self.cache.save(self.art1, 'key3')
+ self.cache.save(self.art1, 'key2')
+ self.cache.save(self.art1, 'key1')
593
594
keys = self.cache.get_keys()
595
- self.assertEqual(set(['key1', 'key2', 'key3']), keys)
+ self.assertEqual(['key1', 'key2', 'key3'], keys)
596
597
result = self.runner.invoke(
598
tools,
0 commit comments