I am getting one error in my project now, and the error is:
Traceback (most recent call last):
File “/home/runner/boilerplate-page-view-time-series-visualizer-1/test_module.py”, line 99, in test_box_plot_labels
self.assertEqual(actual, expected, “Expected box plot 2 secondary labels to be ‘Jan’, ‘Feb’, ‘Mar’, ‘Apr’, ‘May’, ‘Jun’, ‘Jul’, ‘Aug’, ‘Sep’, ‘Oct’, ‘Nov’, ‘Dec’”)
AssertionError: Lists differ: [‘May’, ‘Jun’, ‘Jul’, ‘Aug’, ‘Sep’, ‘Oct’, [36 chars]Apr’] != [‘Jan’, ‘Feb’, ‘Mar’, ‘Apr’, ‘May’, ‘Jun’, [36 chars]Dec’]First differing element 0:
‘May’
‘Jan’
- [‘Jan’,
- ‘Feb’,
- ‘Mar’,
- ‘Apr’,
- [‘May’,
? ^
‘May’,
? ^‘Jun’,
‘Jul’,
‘Aug’,
‘Sep’,
‘Oct’,
‘Nov’,
- ‘Dec’,
? ^
- ‘Dec’]
? ^
- ‘Jan’,
- ‘Feb’,
- ‘Mar’,
- ‘Apr’] : Expected box plot 2 secondary labels to be ‘Jan’, ‘Feb’, ‘Mar’, ‘Apr’, ‘May’, ‘Jun’, ‘Jul’, ‘Aug’, ‘Sep’, ‘Oct’, ‘Nov’, ‘Dec’
my graph for the boxplot looks like this:
I think the error is referring to the order of the labelling on the x axis of the rightmost axis, but then I am even more confused because the correct example of the graph (on the replit) also has this ordering.
Link to my replit: https://replit.com/@HarshilAv/boilerplate-page-view-time-series-visualizer-1#box_plot.png