aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/file_ut.cpp
diff options
context:
space:
mode:
authoraosipenko <aosipenko@yandex-team.ru>2022-02-10 16:48:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:08 +0300
commit948fd24d47d4b3b7815aaef1686aea00ef3f4288 (patch)
tree8ad4c39c2a5f8b341bc02e3b0c5e8f26c40373cb /util/system/file_ut.cpp
parentd2eb4aae699fa2f6901bf32d22eec019c8f29838 (diff)
downloadydb-948fd24d47d4b3b7815aaef1686aea00ef3f4288.tar.gz
Restoring authorship annotation for <aosipenko@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/file_ut.cpp')
-rw-r--r--util/system/file_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/file_ut.cpp b/util/system/file_ut.cpp
index 941e6a50f3..d22f412b37 100644
--- a/util/system/file_ut.cpp
+++ b/util/system/file_ut.cpp
@@ -143,7 +143,7 @@ void TFileTest::TestOpen() {
UNIT_ASSERT_VALUES_EQUAL(f1.GetLength(), 0);
try {
- TFile f2("f1.txt", CreateNew);
+ TFile f2("f1.txt", CreateNew);
} catch (const yexception& e) {
res = e.what();
}
@@ -163,7 +163,7 @@ void TFileTest::TestOpenSync() {
}
void TFileTest::TestRW() {
- TFile f1("f1.txt", CreateNew);
+ TFile f1("f1.txt", CreateNew);
UNIT_ASSERT(f1.IsOpen());
UNIT_ASSERT_VALUES_EQUAL(f1.GetName(), "f1.txt");
UNIT_ASSERT_VALUES_EQUAL(f1.GetLength(), 0);