Merge pull request #2098 from Vest/fix_large

Fix failed BinaryFileTest
This commit is contained in:
Dimitrij
2021-12-23 11:18:55 +00:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #1690: Replaced GeckoFX (Firefox) with CefSharp (Chromium)
- #1325: Language resource files cleanup
### Fixed
- #2098: Fix failed BinaryFileTest
- #2097: Fix failed tests related to mRemoteNGTests.UI.Window.ConfigWindowTests
- #2096: Corrected encryption code of LegacyRijndaelCryptographyProvider
- #2089: Fixed the exception thrown by menu buttons "Documentation" and "Website"

View File

@@ -17,14 +17,14 @@ namespace mRemoteNGTests
public string GetTargetPath([CallerFilePath] string sourceFilePath = "")
{
const string debugOrRelease =
#if DEBUG
#if DEBUG || DEBUG_PORTABLE
"Debug";
#else
"Release";
#endif
const string normalOrPortable =
#if PORTABLE
#if PORTABLE || DEBUG_PORTABLE
" Portable";
#else
"";