diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-10-18 10:50:02 +0400 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-10-18 10:50:02 +0400 |
| commit | a80124cfe207cf99fb170d1050b4f609c6a169d3 (patch) | |
| tree | 195ddb0e3d3ffecf93f1a060325e429dd2356c3e /webhook/src/handler/tests/handler_integration.rs | |
| parent | 2a6cdb4998f505e7df9372367a1bd1f349beedf6 (diff) | |
regenerate cargo deps
Diffstat (limited to 'webhook/src/handler/tests/handler_integration.rs')
| -rw-r--r-- | webhook/src/handler/tests/handler_integration.rs | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/webhook/src/handler/tests/handler_integration.rs b/webhook/src/handler/tests/handler_integration.rs index 3ee0a09..6031428 100644 --- a/webhook/src/handler/tests/handler_integration.rs +++ b/webhook/src/handler/tests/handler_integration.rs @@ -1,23 +1,26 @@ use std::time::Duration; -use crate::{ - config::Config, - handler::tests::utils::{generate_keypair, sign_message}, - start, -}; + +use ctor; +use hyper::{Body, Method, Request, StatusCode}; +use lazy_static::lazy_static; +use serde_json::json; + use common::{ config::test_init, nats_crate::Connection, - testcontainers::{images::generic::WaitFor, Image}, + testcontainers::{Image, images::generic::WaitFor}, }; use common::{ config::Settings, log::info, - testcontainers::{clients::Cli, images::generic::GenericImage, Container, Docker}, + testcontainers::{clients::Cli, Container, Docker, images::generic::GenericImage}, +}; + +use crate::{ + config::Config, + handler::tests::utils::{generate_keypair, sign_message}, + start, }; -use hyper::{Body, Method, Request, StatusCode}; -use lazy_static::lazy_static; -use serde_json::json; -use ctor; const fn nats_image<'a>() -> &'a str { #[cfg(all(unix, target_arch = "x86_64"))] |
