Skip to content

Commit

Permalink
Fix DeviceInfo when run locally (#3527)
Browse files Browse the repository at this point in the history
  • Loading branch information
papafe authored Feb 21, 2024
1 parent a9a21f8 commit b434a43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/Realm.Tests/Sync/AppTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public void DeviceInfo_OutputsMeaningfulInfo()
{
static void AssertBundleId(params string[] expectedValues)
{
var values = expectedValues.Concat(new[] { "ReSharperTestRunner" }).Select(Platform.Sha256).ToArray();
var localTestRunners = new[] { "ReSharperTestRunner", "testhost" };
var values = expectedValues.Concat(localTestRunners).Select(Platform.Sha256).ToArray();
Assert.That(values, Does.Contain(Platform.BundleId));
}

Expand Down

0 comments on commit b434a43

Please sign in to comment.