Skip to content

Commit

Permalink
Fix ImmutableListTest: The code should be tested when System.Reactive…
Browse files Browse the repository at this point in the history
… is visible to the test assembly, which is exactly when it is signed (and not vice versa). The SIGNED-directive is thus added to the Uwp-DeviceRunner project. (#542)
  • Loading branch information
danielcweber authored May 28, 2018
1 parent 6728dec commit dfbe904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<DefineConstants Condition="$(SignAssembly) == 'true'">$(DefineConstants);SIGNED</DefineConstants>
<UpdateAssemblyInfo>false</UpdateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace ReactiveTests.Tests
{
#if !SIGNED
#if SIGNED

public class ImmutableListTest
{
Expand Down

0 comments on commit dfbe904

Please sign in to comment.