mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-02 23:04:23 +00:00
Fixed: Test Due to 4.6.2 Error Change
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
|
||||
|
||||
using System;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
@@ -20,11 +20,18 @@ namespace NzbDrone.Common.Test
|
||||
}
|
||||
|
||||
[TestCase("")]
|
||||
[TestCase("http://")]
|
||||
public void DownloadString_should_throw_on_error(string url)
|
||||
public void DownloadString_should_throw_on_empty_string(string url)
|
||||
{
|
||||
Assert.Throws<ArgumentException>(() => Subject.DownloadString(url));
|
||||
ExceptionVerification.ExpectedWarns(1);
|
||||
}
|
||||
|
||||
// .net 4.6.2 throws NotSupportedException instead of ArgumentException here
|
||||
[TestCase("http://")]
|
||||
public void DownloadString_should_throw_on_not_supported_string(string url)
|
||||
{
|
||||
Assert.Throws<NotSupportedException>(() => Subject.DownloadString(url));
|
||||
ExceptionVerification.ExpectedWarns(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user