Skip to content

Commit

Permalink
Fixed unit test for changes in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aroelo authored and atruskie committed Jan 17, 2018
1 parent 239bad2 commit 94e49cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Acoustics/Acoustics.Test/Shared/ConfigFileTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ public void TheResolveMethodThrowsForBadInput()
{
Assert.Throws<ConfigFileException>(() => { ConfigFile.ResolveConfigFile(" "); });

Assert.Throws<ConfigFileException>(() => { ConfigFile.ResolveConfigFile(string.Empty); });
Assert.Throws<ArgumentException>(() => { ConfigFile.ResolveConfigFile(string.Empty); });

Assert.Throws<ConfigFileException>(() => { ConfigFile.ResolveConfigFile((string)null); });
Assert.Throws<ArgumentException>(() => { ConfigFile.ResolveConfigFile((string)null); });

Assert.Throws<ArgumentNullException>(() => { ConfigFile.ResolveConfigFile((FileInfo)null); });
}
Expand Down

0 comments on commit 94e49cf

Please sign in to comment.