We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa4f1f commit b49f0d1Copy full SHA for b49f0d1
test/test_io.cxx
@@ -184,8 +184,10 @@ TEST_F(IOTest, TestInvalidToml) {
184
}
185
186
try{
187
- ghc::filesystem::path empty_file( ghc::filesystem::path(TESTDIR) / "data" / "temp" / "empty_file");
188
- std::ofstream output(empty_file.string());
+ ghc::filesystem::path empty_file( ghc::filesystem::path(TESTDIR) / "data" / "temp" / "empty_file.toml");
+ std::ofstream output_file;
189
+ output_file.open(empty_file.string());
190
+ output_file.close();
191
read_point_estimate_from_toml(empty_file);
192
FAIL();
193
0 commit comments