Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add TasksPanel to PANEL_KEYS in tests
  • Loading branch information
Chiemezuo committed Nov 26, 2025
commit 5e3c313edea00662859f5a98411e3f0c424a2932
4 changes: 3 additions & 1 deletion tests/panels/test_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def test_post_json(self):
"/",
data=data,
content_type="application/json",
CONTENT_TYPE="application/json", # Force django test client to add the content-type even if no data
# Force django test client to add the content-type even if no data
CONTENT_TYPE="application/json",
)
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
Expand Down Expand Up @@ -82,6 +83,7 @@ class HistoryViewsTestCase(IntegrationTestCase):
"CachePanel",
"SignalsPanel",
"CommunityPanel",
"TasksPanel",
"ProfilingPanel",
}

Expand Down
Loading