self.assertEqual(__, self.truth_value(1,)) I believe your intention is to pass a tuple in function truth_value? in that case, it should be written as: self.assertEqual(__, self.truth_value((1,)))
self.assertEqual(__, self.truth_value(1,))
I believe your intention is to pass a tuple in function truth_value?
in that case, it should be written as:
self.assertEqual(__, self.truth_value((1,)))