diff options
| author | stanly <[email protected]> | 2022-02-10 16:46:49 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:49 +0300 | 
| commit | 6170310e8721e225f64ddabf7a7358253d7a1249 (patch) | |
| tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/string/printf_ut.cpp | |
| parent | cde218e65dfef5ce03a48d641fd8f7913cf17b2d (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/string/printf_ut.cpp')
| -rw-r--r-- | util/string/printf_ut.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/util/string/printf_ut.cpp b/util/string/printf_ut.cpp index d11129b6b0f..2b2f980b70e 100644 --- a/util/string/printf_ut.cpp +++ b/util/string/printf_ut.cpp @@ -21,10 +21,10 @@ Y_UNIT_TEST_SUITE(TStringPrintf) {      }      Y_UNIT_TEST(TestSpecial) { -        UNIT_ASSERT_EQUAL("4294967295", Sprintf("%" PRIu32, (ui32)(-1)));  +        UNIT_ASSERT_EQUAL("4294967295", Sprintf("%" PRIu32, (ui32)(-1)));      } -  +      Y_UNIT_TEST(TestExplicitPositions) { -        UNIT_ASSERT_EQUAL("abc xyz abc", Sprintf("%1$s %2$s %1$s", "abc", "xyz"));  -    }  +        UNIT_ASSERT_EQUAL("abc xyz abc", Sprintf("%1$s %2$s %1$s", "abc", "xyz")); +    }  }  | 
