File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ namespace shellanything
9797 std::string test_dir = ra::filesystem::GetTemporaryDirectory () + " \\ " + ra::testing::GetTestQualifiedName ();
9898 ASSERT_TRUE (ra::filesystem::CreateDirectory (test_dir.c_str ()));
9999 std::string dll_filename = ra::filesystem::GetFilename (icon_path);
100- std::string output_path_v1 = test_dir + " \\ " + dll_filename + " .index " + zero_padding (ra::strings::ToString (i), 3 ) + " .v1.bmp" ;
101- std::string output_path_v3 = test_dir + " \\ " + dll_filename + " .index " + zero_padding (ra::strings::ToString (i), 3 ) + " .v3.bmp" ;
100+ std::string output_path_v1 = test_dir + " \\ " + dll_filename + " ." + zero_padding (ra::strings::ToString (i), 3 ) + " .v1.bmp" ;
101+ std::string output_path_v3 = test_dir + " \\ " + dll_filename + " ." + zero_padding (ra::strings::ToString (i), 3 ) + " .v3.bmp" ;
102102
103103 // save to a file
104104 ASSERT_TRUE (Win32Utils::SaveAs32BppBitmapV1File (output_path_v1.c_str (), hBitmap));
@@ -149,7 +149,7 @@ namespace shellanything
149149 std::string test_dir = ra::filesystem::GetTemporaryDirectory () + " \\ " + ra::testing::GetTestQualifiedName ();
150150 ASSERT_TRUE (ra::filesystem::CreateDirectory (test_dir.c_str ()));
151151 std::string dll_filename = ra::filesystem::GetFilename (icon_path);
152- std::string output_path = test_dir + " \\ " + dll_filename + " .index " + zero_padding (ra::strings::ToString (index), 3 ) + " .bmp" ;
152+ std::string output_path = test_dir + " \\ " + dll_filename + " ." + zero_padding (ra::strings::ToString (index), 3 ) + " .bmp" ;
153153
154154 // save to a file
155155 ASSERT_TRUE (Win32Utils::SaveAs32BppBitmapFile (output_path.c_str (), hBitmap));
You can’t perform that action at this time.
0 commit comments