Skip to content
Merged
Changes from 1 commit
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
Next Next commit
refactor: skip brittle test under windows
  • Loading branch information
vbreuss committed Nov 12, 2025
commit 0d6c04c845d2d3cf414bbb1353a927452c184e2c
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