From 56cbae92ecf55420bbdff9de0e7ae059d9dd3ecf Mon Sep 17 00:00:00 2001 From: Gray Manley Date: Sun, 19 Feb 2023 06:14:34 -0600 Subject: [PATCH] Use more pythony naming. --- test/test_postprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_postprocessor.py b/test/test_postprocessor.py index 14e67a67..867014cf 100644 --- a/test/test_postprocessor.py +++ b/test/test_postprocessor.py @@ -287,7 +287,7 @@ class MetadataTest(BasePostprocessorTest): self._trigger() self.assertEqual(self._output(m), "foobar1\nfoobar2\nfoobarbaz\n") - def test_metadata_tags_array_of_dict(self): + def test_metadata_tags_list_of_dict(self): self._create( {"mode": "tags"}, {"tags": [{"g": "foobar1", "m": "foobar2"}, {"g": None, "m": "foobarbaz"}]},