aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_source_parser.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-09-19 00:20:20 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-09-19 00:20:20 -0300
commit97bbea389f55845ef85d3664fda04202057a6106 (patch)
tree0b05c427783e2c69302221c803291d5c4940c681 /tests/check_source_parser.c
parent7e946b6dfb9b29636ac39f269bba6eeee863e24b (diff)
downloadblogc-97bbea389f55845ef85d3664fda04202057a6106.tar.gz
blogc-97bbea389f55845ef85d3664fda04202057a6106.tar.bz2
blogc-97bbea389f55845ef85d3664fda04202057a6106.zip
source-parser: fixed error message
Diffstat (limited to 'tests/check_source_parser.c')
-rw-r--r--tests/check_source_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check_source_parser.c b/tests/check_source_parser.c
index 0299c16..94f75c9 100644
--- a/tests/check_source_parser.c
+++ b/tests/check_source_parser.c
@@ -136,7 +136,7 @@ test_source_parse_config_empty(void **state)
assert_null(source);
assert_non_null(err);
assert_int_equal(err->type, BLOGC_ERROR_SOURCE_PARSER);
- assert_string_equal(err->msg, "Your config file is empty.");
+ assert_string_equal(err->msg, "Your source file is empty.");
blogc_error_free(err);
b_trie_free(source);
}