self.assertEqual(actual,expected,'''Expected calling "arithmetic_arranger()" with a problem that uses the "/" operator to return "Error: Operator must be '+' or '-'."''')
expected="Error: Numbers cannot be more than four digits."
self.assertEqual(actual,expected,'Expected calling "arithmetic_arranger()" with a problem that has a number over 4 digits long to return "Error: Numbers cannot be more than four digits."')
expected="Error: Numbers must only contain digits."
self.assertEqual(actual,expected,'Expected calling "arithmetic_arranger()" with a problem that contains a letter character in the number to return "Error: Numbers must only contain digits."')
self.assertEqual(actual,expected,'Expected solutions to be correctly displayed in output when calling "arithmetic_arranger()" with arithmetic problems and a second argument of `True`.')