Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
<PackageVersion Include="NUnit3TestAdapter" Version="5.2.0"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Testably.Abstractions.Interface" Version="10.0.0-pre.1"/>
<PackageVersion Include="Testably.Abstractions" Version="10.0.0-pre.1"/>
<PackageVersion Include="Testably.Abstractions.Interface" Version="10.0.0"/>
<PackageVersion Include="Testably.Abstractions" Version="10.0.0"/>
<PackageVersion Include="Testably.Abstractions.Testing" Version="4.3.9"/>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ await That(rootLastWriteTime).IsBetween(creationTimeStart).And(creationTimeEnd)
public async Task AdjustTimes_WhenUpdatingAFile_ShouldAdjustTimesOnlyOnWindows(
string path1, string path2, string fileName)
{
Skip.If(Test.IsNetFramework && FileSystem is RealFileSystem,
"Works unreliable on .NET Framework");
Skip.If(FileSystem is RealFileSystem && Test.RunsOnWindows, "Works unreliable on Windows");
SkipIfLongRunningTestsShouldBeSkipped();

string subdirectoryPath = FileSystem.Path.Combine(path1, path2);
Expand Down
Loading