build(deps): bump mockito from 1.3.0 to 1.4.0 (#1567)

* build(deps): bump mockito from 1.3.0 to 1.3.1

Bumps [mockito](https://github.com/lipanski/mockito) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/lipanski/mockito/releases)
- [Commits](https://github.com/lipanski/mockito/compare/1.3.0...1.3.1)

---
updated-dependencies:
- dependency-name: mockito
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* fix: breaking change in mockito async

* bump mockito to 1.4

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Byron Hambly <byron@hambly.dev>
This commit is contained in:
dependabot[bot] 2024-06-19 15:35:05 +02:00 committed by GitHub
parent 1d5df5498c
commit 4d557d1ef9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -480,7 +480,7 @@ mod tests {
#[tokio::test]
async fn test_is_daemon_available_success() {
let mut server = mockito::Server::new();
let mut server = mockito::Server::new_async().await;
let _ = server
.mock("GET", "/get_info")
@ -511,7 +511,7 @@ mod tests {
#[tokio::test]
async fn test_is_daemon_available_wrong_network_failure() {
let mut server = mockito::Server::new();
let mut server = mockito::Server::new_async().await;
let _ = server
.mock("GET", "/get_info")
@ -542,7 +542,7 @@ mod tests {
#[tokio::test]
async fn test_is_daemon_available_not_synced_failure() {
let mut server = mockito::Server::new();
let mut server = mockito::Server::new_async().await;
let _ = server
.mock("GET", "/get_info")