Clarified unit test failure message.

This commit is contained in:
tjhunt 2006-07-27 10:43:14 +00:00
parent fad28a7451
commit 9a1e5f0a5f

View File

@ -257,7 +257,7 @@ class datalib_test extends prefix_changing_test_case {
$this->assertFalse(insert_record($this->table, $obj), 'Insert bad data - should fail.');
$result = ob_get_contents();
ob_end_clean();
$this->assert(new TextExpectation('ERROR:'), $result, 'Insert bad data - error should have been printed.');
$this->assert(new TextExpectation('ERROR:'), $result, 'Insert bad data - error should have been printed. This is known not to work on MySQL.');
}
}