summaryrefslogtreecommitdiffstats
path: root/util/stream/printf_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <[email protected]>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/stream/printf_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/stream/printf_ut.cpp')
-rw-r--r--util/stream/printf_ut.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/stream/printf_ut.cpp b/util/stream/printf_ut.cpp
index 0eab1670625..fbfee58af4f 100644
--- a/util/stream/printf_ut.cpp
+++ b/util/stream/printf_ut.cpp
@@ -1,13 +1,13 @@
-#include "null.h"
+#include "null.h"
#include "printf.h"
-#include "str.h"
+#include "str.h"
#include <util/generic/string.h>
-
+
#include <library/cpp/testing/unittest/registar.h>
-Y_UNIT_TEST_SUITE(TStreamPrintfTest) {
- Y_UNIT_TEST(TestPrintf) {
+Y_UNIT_TEST_SUITE(TStreamPrintfTest) {
+ Y_UNIT_TEST(TestPrintf) {
TStringStream ss;
UNIT_ASSERT_EQUAL(Printf(ss, "qw %s %d", "er", 1), 7);
@@ -18,11 +18,11 @@ Y_UNIT_TEST_SUITE(TStreamPrintfTest) {
#pragma GCC diagnostic ignored "-Wformat-zero-length"
#endif // __GNUC__
- Y_UNIT_TEST(TestZeroString) {
+ Y_UNIT_TEST(TestZeroString) {
UNIT_ASSERT_EQUAL(Printf(Cnull, ""), 0);
}
- Y_UNIT_TEST(TestLargePrintf) {
+ Y_UNIT_TEST(TestLargePrintf) {
TString s = NUnitTest::RandomString(1000000);
TStringStream ss;