We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ce13e commit b4a51deCopy full SHA for b4a51de
tests/openapi/test_openapi.py
@@ -292,7 +292,7 @@ def setUp(self):
292
def test_must_iterate_on_paths(self):
293
294
expected = {"/foo", "/bar", "/baz"}
295
- actual = set([path for path in self.editor.iter_on_path()])
+ actual = set(list(self.editor.iter_on_path()))
296
297
self.assertEqual(expected, actual)
298
tests/swagger/test_swagger.py
@@ -302,7 +302,7 @@ def setUp(self):
302
303
304
305
306
307
308
0 commit comments