Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrij <kvarkas@gmail.com>2021-12-23 14:18:55 +0300
committerGitHub <noreply@github.com>2021-12-23 14:18:55 +0300
commit3b8e347a9e672b1858ca48c19baf8fd36cfc0410 (patch)
treebeb4b0cbef45c7e3db80e829875cb01e7d88cf4f
parentfed44dc366b59affa7913b625385a54967740090 (diff)
parent37f160f6984e5d0b93215a72c2457c6a77523b01 (diff)
Merge pull request #2098 from Vest/fix_large
Fix failed BinaryFileTest
-rw-r--r--CHANGELOG.md1
-rw-r--r--mRemoteNGTests/BinaryFileTests.cs4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a64cb9b4..9e871292 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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"
diff --git a/mRemoteNGTests/BinaryFileTests.cs b/mRemoteNGTests/BinaryFileTests.cs
index c64efb04..1ba2bbe1 100644
--- a/mRemoteNGTests/BinaryFileTests.cs
+++ b/mRemoteNGTests/BinaryFileTests.cs
@@ -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
"";