Changed name of expected values in tests

This commit is contained in:
James Booth
2014-02-01 22:49:47 +00:00
parent 3d7d070b13
commit 7d4b6d6f4f

View File

@@ -225,9 +225,9 @@ stub_ui_handle_recipient_error(void)
// expectations // expectations
void void
expect_cons_show(char *output) expect_cons_show(char *expected)
{ {
expect_string(_mock_cons_show, output, output); expect_string(_mock_cons_show, output, expected);
} }
void void
@@ -237,9 +237,9 @@ expect_cons_show_calls(int n)
} }
void void
expect_cons_show_error(char *output) expect_cons_show_error(char *expected)
{ {
expect_string(_mock_cons_show_error, output, output); expect_string(_mock_cons_show_error, output, expected);
} }
void void