Skip to content

Commit 4d4a43e

Browse files
authored
chore: update core packages to 10.0.0 (#893)
This PR updates the core Testably.Abstractions packages from pre-release version 10.0.0-pre.1 to the stable 10.0.0 release. As part of this update, a test skip condition was refined to more accurately reflect when the test should be skipped. ### Key Changes: - Updated package versions from pre-release to stable for core abstractions packages - Refined test skip condition to target Windows platform specifically instead of .NET Framework
1 parent 6c2d399 commit 4d4a43e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<PackageVersion Include="NUnit3TestAdapter" Version="5.2.0"/>
4848
</ItemGroup>
4949
<ItemGroup>
50-
<PackageVersion Include="Testably.Abstractions.Interface" Version="10.0.0-pre.1"/>
51-
<PackageVersion Include="Testably.Abstractions" Version="10.0.0-pre.1"/>
50+
<PackageVersion Include="Testably.Abstractions.Interface" Version="10.0.0"/>
51+
<PackageVersion Include="Testably.Abstractions" Version="10.0.0"/>
5252
<PackageVersion Include="Testably.Abstractions.Testing" Version="4.3.9"/>
5353
</ItemGroup>
5454
<ItemGroup>

Tests/Testably.Abstractions.Tests/FileSystem/Directory/Tests.AdjustTimes.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,7 @@ await That(rootLastWriteTime).IsBetween(creationTimeStart).And(creationTimeEnd)
157157
public async Task AdjustTimes_WhenUpdatingAFile_ShouldAdjustTimesOnlyOnWindows(
158158
string path1, string path2, string fileName)
159159
{
160-
Skip.If(Test.IsNetFramework && FileSystem is RealFileSystem,
161-
"Works unreliable on .NET Framework");
160+
Skip.If(FileSystem is RealFileSystem && Test.RunsOnWindows, "Works unreliable on Windows");
162161
SkipIfLongRunningTestsShouldBeSkipped();
163162

164163
string subdirectoryPath = FileSystem.Path.Combine(path1, path2);

0 commit comments

Comments
 (0)