summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorAkira Yumiyama <[email protected]>2013-04-27 10:09:05 +0900
committerAkira Yumiyama <[email protected]>2013-04-27 10:09:05 +0900
commit814f3305cab2b93c36e1691c8b7439aab6df8c35 (patch)
treebfee0023296eb4f73e40f5d13d33a27a5f5309c0 /test
parentda557fbc82577872034cd52fe3bcf45aa13df45e (diff)
downloadmruby-814f3305cab2b93c36e1691c8b7439aab6df8c35.tar.gz
mruby-814f3305cab2b93c36e1691c8b7439aab6df8c35.zip
put MRB_ prefix before ARGS_XXX macros
Diffstat (limited to 'test')
-rw-r--r--test/mruby_io_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/mruby_io_test.c b/test/mruby_io_test.c
index 71ef715a5..7c69d5c24 100644
--- a/test/mruby_io_test.c
+++ b/test/mruby_io_test.c
@@ -85,10 +85,10 @@ void
mrb_mruby_io_gem_test(mrb_state* mrb)
{
struct RClass *io_test = mrb_define_module(mrb, "MRubyIOTestUtil");
- mrb_define_class_method(mrb, io_test, "io_test_setup", mrb_io_test_io_setup, ARGS_NONE());
- mrb_define_class_method(mrb, io_test, "io_test_cleanup", mrb_io_test_io_cleanup, ARGS_NONE());
+ mrb_define_class_method(mrb, io_test, "io_test_setup", mrb_io_test_io_setup, MRB_ARGS_NONE());
+ mrb_define_class_method(mrb, io_test, "io_test_cleanup", mrb_io_test_io_cleanup, MRB_ARGS_NONE());
- mrb_define_class_method(mrb, io_test, "file_test_setup", mrb_io_test_file_setup, ARGS_NONE());
- mrb_define_class_method(mrb, io_test, "file_test_cleanup", mrb_io_test_file_cleanup, ARGS_NONE());
+ mrb_define_class_method(mrb, io_test, "file_test_setup", mrb_io_test_file_setup, MRB_ARGS_NONE());
+ mrb_define_class_method(mrb, io_test, "file_test_cleanup", mrb_io_test_file_cleanup, MRB_ARGS_NONE());
}