mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-13 00:35:37 -04:00
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:
parent
1d5df5498c
commit
4d557d1ef9
3 changed files with 7 additions and 7 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue