aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2018-05-18 17:50:04 +0200
committerMarco Paland <marco@paland.com>2018-05-18 17:50:04 +0200
commit0116b7491693306e613491b7ccc44743da6d60cb (patch)
tree87092a1fef3ea496e6dd00ca82062c05abfa3b2a /test
parent9351e5b1ac8e3871bf8a37fc3c24c120cf0e5614 (diff)
downloadprintf-0116b7491693306e613491b7ccc44743da6d60cb.tar.gz
printf-0116b7491693306e613491b7ccc44743da6d60cb.tar.bz2
printf-0116b7491693306e613491b7ccc44743da6d60cb.zip
refactor(printf): changed oprintf() to fctprintf()
fctprintf() is more descriptive for its operation
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"));
}