1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

fixing Linux integration tests

This commit is contained in:
Keivan Beigi
2013-08-26 12:35:53 -07:00
parent 9370edb48c
commit 75371c4e72
3 changed files with 15 additions and 5 deletions
@@ -1,4 +1,5 @@
using System.IO;
using System;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common;
@@ -13,7 +14,7 @@ namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
[Test]
public void should_return_free_disk_space()
{
var result = Subject.GetAvilableSpace(Directory.GetCurrentDirectory());
var result = Subject.GetAvilableSpace(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData));
result.Should().BeGreaterThan(0);
}