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 cd4b236 commit 341276cCopy full SHA for 341276c
tests/panels/test_staticfiles.py
@@ -114,7 +114,7 @@ def test_context_variable_lifecycle(self):
114
url = storage.staticfiles_storage.url("test.css")
115
self.assertTrue(url.startswith("/static/"))
116
# Verify file was tracked
117
- self.assertIn("test.css", [f.path for f in self.panel.used_paths])
+ self.assertIn("test.css", [f[0] for f in self.panel.used_paths])
118
finally:
119
request_id_context_var.reset(token)
120
0 commit comments