Lines Matching refs:error_msg
274 def check_value(self, test_base, val, error_msg=None): argument
283 this_error_msg = error_msg if error_msg else ""
301 self.check_value_children(test_base, val, error_msg)
303 def check_value_children(self, test_base, val, error_msg=None): argument
312 this_error_msg = error_msg if error_msg else ""
320 child_error = "Checking child with index " + str(i) + ":\n" + error_msg
2098 error_msg = ""
2102 error_msg += "Missing pairs:\n"
2104 error_msg += " [" + pair[0] + ":" + pair[1] + "]\n"
2107 error_msg += out_of_order_errors
2109 error_msg += "Got the following " + str(num_matches) + " completions back:\n"
2113 … error_msg += "[" + match_candidate + ":" + description_candidate + "] index " + str(i) + "\n"
2114 self.assertFalse(got_failure, error_msg)