Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Nov 21, 2020
1 parent 6a6ab31 commit ec7dbc7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::JormungandrError;
use crate::common::jcli::JCli;
use assert_fs::{fixture::ChildPath, TempDir};
use assert_fs::TempDir;
use chain_impl_mockchain::fee::LinearFee;
use jormungandr_lib::{
crypto::hash::Hash,
Expand Down
3 changes: 1 addition & 2 deletions testing/jormungandr-integration-tests/src/jormungandr/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ use crate::common::{
};
use assert_fs::TempDir;
use jormungandr_lib::interfaces::Tls;
use jormungandr_testing_utils::testing::Openssl;

#[test]
#[cfg(any(unix, windows))]
pub fn test_rest_tls_config() {
let temp_dir = TempDir::new().unwrap();
let temp_dir = TempDir::new().unwrap().into_persistent();
let prv_key_file = resources::tls_server_private_key();
let server_crt_file = resources::tls_server_crt();
let ca_crt_file = resources::tls_ca_crt();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ pub use raw::RawRest;
pub use settings::RestSettings;

use crate::{testing::node::legacy, testing::MemPoolCheck, wallet::Wallet};
use assert_fs::fixture::ChildPath;
use chain_impl_mockchain::fragment::{Fragment, FragmentId};
use jormungandr_lib::{
crypto::hash::Hash,
Expand Down

0 comments on commit ec7dbc7

Please sign in to comment.