Skip to content

Commit

Permalink
Bump xunit.analyzers from 1.4.0 to 1.6.0 in /ShareJobsData (#252)
Browse files Browse the repository at this point in the history
* Bump xunit.analyzers from 1.4.0 to 1.6.0 in /ShareJobsData

Bumps [xunit.analyzers](https://github.com/xunit/xunit.analyzers) from 1.4.0 to 1.6.0.
- [Commits](xunit/xunit.analyzers@1.4.0...1.6.0)

---
updated-dependencies:
- dependency-name: xunit.analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix analyzer warnings

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Eduardo Serrano <[email protected]>
  • Loading branch information
dependabot[bot] and edumserrano authored Nov 26, 2023
1 parent 9d6db38 commit 76456a7
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion ShareJobsData/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="Verify.Xunit" Version="22.5.0" />
<PackageReference Include="xunit.analyzers" Version="1.4.0" />
<PackageReference Include="xunit.analyzers" Version="1.6.0" />
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.16" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.3" />
<PackageReference Include="LiquidTestReports.Custom" Version="1.0.9" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public sealed class ReadDataFromCurrentGitHubWorkflowCommandValidationTests
/// Validation test for the <see cref="ReadDataFromCurrentGitHubWorkflowCommand.ArtifactName"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactNameOption(string artifactName)
Expand All @@ -32,7 +31,6 @@ public async Task ValidateArtifactNameOption(string artifactName)
/// Validation test for the <see cref="ReadDataFromCurrentGitHubWorkflowCommand.ArtifactFilename"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactFilenameOption(string artifactFilename)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public sealed class ReadDataFromDifferentGitHubWorkflowCommandValidationTests
/// Validation test for the <see cref="ReadDataFromDifferentGitHubWorkflowCommand.AuthToken"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateAuthTokenOption(string authToken)
Expand All @@ -34,7 +33,6 @@ public async Task ValidateAuthTokenOption(string authToken)
/// Validation test for the <see cref="ReadDataFromDifferentGitHubWorkflowCommand.Repo"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateRepoOption(string repo)
Expand All @@ -55,7 +53,6 @@ public async Task ValidateRepoOption(string repo)
/// Validation test for the <see cref="ReadDataFromDifferentGitHubWorkflowCommand.RunId"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateRunIdOption(string runId)
Expand All @@ -76,7 +73,6 @@ public async Task ValidateRunIdOption(string runId)
/// Validation test for the <see cref="ReadDataFromDifferentGitHubWorkflowCommand.ArtifactName"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactNameOption(string artifactName)
Expand All @@ -98,7 +94,6 @@ public async Task ValidateArtifactNameOption(string artifactName)
/// Validation test for the <see cref="ReadDataFromDifferentGitHubWorkflowCommand.ArtifactFilename"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactFilenameOption(string artifactFilename)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public sealed class SetDataCommandValidationTests
/// Validation test for the <see cref="SetDataCommand.ArtifactName"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactNameOption(string artifactName)
Expand All @@ -33,7 +32,6 @@ public async Task ValidateArtifactNameOption(string artifactName)
/// Validation test for the <see cref="SetDataCommand.ArtifactFilename"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateArtifactFilenameOption(string artifactFilename)
Expand All @@ -52,7 +50,6 @@ public async Task ValidateArtifactFilenameOption(string artifactFilename)
/// Validation test for the <see cref="SetDataCommand.DataAsYmlStr"/> command option.
/// </summary>
[Theory]
[InlineData(null)]
[InlineData("")]
[InlineData(" ")]
public async Task ValidateDataAsYmlStrOption(string dataAsYmlStr)
Expand Down

0 comments on commit 76456a7

Please sign in to comment.