Fixed: Failing test and some flaky tests.

Co-Authored-By: taloth <taloth@users.noreply.github.com>
pull/6/head
Qstick 7 years ago
parent 4c74f97153
commit 902036fbdb

@ -137,6 +137,9 @@ namespace NzbDrone.Core.Test.Messaging.Commands
QueueAndWaitForExecution(commandModel); QueueAndWaitForExecution(commandModel);
VerifyEventPublished<CommandExecutedEvent>(); VerifyEventPublished<CommandExecutedEvent>();
Thread.Sleep(10);
ExceptionVerification.ExpectedErrors(1); ExceptionVerification.ExpectedErrors(1);
} }

@ -1,4 +1,4 @@
using System; using System;
using FluentAssertions; using FluentAssertions;
using NUnit.Framework; using NUnit.Framework;
using NzbDrone.Mono.EnvironmentInfo; using NzbDrone.Mono.EnvironmentInfo;
@ -13,8 +13,11 @@ namespace NzbDrone.Mono.Test.EnvironmentInfo
[Test] [Test]
public void should_get_framework_version() public void should_get_framework_version()
{ {
Subject.Version.Major.Should().Be(4); Subject.Version.Major.Should().BeOneOf(4, 5);
Subject.Version.Minor.Should().BeOneOf(0, 5, 6); if (Subject.Version.Major == 4)
{
Subject.Version.Minor.Should().BeOneOf(0, 5, 6);
}
} }
} }
} }

Loading…
Cancel
Save