unittest param order is the opposite of Jest
which is the opposite order for Jestexpect(myVar).toBe(42)
assumes the first is expected, second is actual in the error message.
self.assertEqual(expected, actual)
self.assertEqual(42, my_var)
PyCharm even displays Expected and Actual
Failure
Expect...
fullchee.hashnode.dev1 min read