Skip to content

Commit

Permalink
Bump csharpier from 0.26.7 to 0.27.0 (#116)
Browse files Browse the repository at this point in the history
* Bump csharpier from 0.26.7 to 0.27.0

Bumps [csharpier](https://github.com/belav/csharpier) from 0.26.7 to 0.27.0.
- [Release notes](https://github.com/belav/csharpier/releases)
- [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md)
- [Commits](belav/csharpier@0.26.7...0.27.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* CSharpier format

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: gstraccini[bot] <44061807+gstraccini[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and gstraccini[bot] authored Jan 16, 2024
1 parent 5e65536 commit 6fc9572
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "0.26.7",
"version": "0.27.0",
"commands": [
"dotnet-csharpier"
]
Expand Down
15 changes: 7 additions & 8 deletions Tests/ViaCep.Tests/AddressTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,13 @@ public async Task ValidateSearchByFullAddressAsync()
var fixtureResults = ResultsFixture.GetSampleResults();
var clientMock = new Mock<IViaCepClient>();
clientMock
.Setup(
c =>
c.SearchAsync(
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<CancellationToken>()
)
.Setup(c =>
c.SearchAsync(
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<CancellationToken>()
)
)
.ReturnsAsync(fixtureResults);

Expand Down

0 comments on commit 6fc9572

Please sign in to comment.