aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_suite.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_suite.cpp b/test/test_suite.cpp
index c5614b0..4bc773a 100644
--- a/test/test_suite.cpp
+++ b/test/test_suite.cpp
@@ -57,10 +57,10 @@ TEST_CASE("printf", "[]" ) {
}
-TEST_CASE("oprintf", "[]" ) {
+TEST_CASE("fctprintf", "[]" ) {
printf_idx = 0U;
memset(printf_buffer, 0xCC, 100U);
- test::oprintf(&test::_putchar, "This is a test of %X", 0x12EFU);
+ test::fctprintf(&test::_putchar, "This is a test of %X", 0x12EFU);
REQUIRE(!strcmp(printf_buffer, "This is a test of 12EF"));
}