Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump xunit from 2.6.2 to 2.6.3 #275

Merged
merged 3 commits into from
Dec 17, 2023
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
1 change: 0 additions & 1 deletion .csharpierignore

This file was deleted.

4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<PackageVersion Include="Verify.MSTest" Version="22.8.0" />
<PackageVersion Include="Verify.NUnit" Version="22.8.0" />
<PackageVersion Include="Verify.Xunit" Version="22.8.0" />
<PackageVersion Include="xunit" Version="2.6.2" />
<PackageVersion Include="xunit.core" Version="2.6.2" />
<PackageVersion Include="xunit" Version="2.6.3" />
<PackageVersion Include="xunit.core" Version="2.6.3" />
<PackageVersion Include="xunit.extensibility.core" Version="2.6.3" />
<PackageVersion Include="xunit.runner.console" Version="2.6.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.5" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NetEvolve.Extensions.NUnit.Tests.Unit;

Check failure on line 1 in tests/NetEvolve.Extensions.NUnit.Tests.Unit/AttributeTestsBase.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Format / Validate Code Formatting

Fix imports ordering.

using System;
using System.Collections.Generic;
Expand All @@ -6,11 +6,11 @@
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using VerifyNUnit;
using VerifyTests;
using global::NUnit.Framework;
using global::NUnit.Framework.Internal;
using global::NUnit.Framework.Internal.Builders;
using VerifyNUnit;
using VerifyTests;

/// <summary>
/// Base class for Trait Attribute tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace NetEvolve.Extensions.NUnit.Tests.Unit;

Check failure on line 1 in tests/NetEvolve.Extensions.NUnit.Tests.Unit/BugAttributeTests.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Format / Validate Code Formatting

Fix imports ordering.

using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
using global::NUnit.Framework;
using NetEvolve.Extensions.NUnit;
using global::NUnit.Framework;

/// <summary>
/// Unit tests for <see cref="BugAttribute"/>.
Expand Down
Loading