This commit is contained in:
Koleh David 2025-02-06 14:28:34 +10:30
parent f1e41aa8e8
commit 9cef90d5fd

View File

@ -12,13 +12,13 @@ class GildedRoseTest(unittest.TestCase):
return str(item) return str(item)
def test_foo(self): def test_foo(self):
input_vals = [ input_names = [
"foo", "foo",
"Aged Brie", "Aged Brie",
"Backstage passes to a TAFKAL80ETC concert", "Backstage passes to a TAFKAL80ETC concert",
] ]
verify_all_combinations(self.do_stuff, [input_vals, [0]]) verify_all_combinations(self.do_stuff, [input_names, [0]])
if __name__ == "__main__": if __name__ == "__main__":