Update gtest_disk_encrypted for new createReadBufferFromFileBase() interface

This commit is contained in:
Azat Khuzhin 2021-10-26 23:53:24 +03:00
parent b764b6ce21
commit 7ce01b328e

View File

@ -65,7 +65,7 @@ protected:
static String getBinaryRepresentation(const String & abs_path)
{
auto buf = createReadBufferFromFileBase(abs_path, {}, 0);
auto buf = createReadBufferFromFileBase(abs_path, /* settings= */ {});
String str;
readStringUntilEOF(str, *buf);
return str;