Skip to content

Commit 30c8162

Browse files
authored
Merge pull request parallaxsecond#242 from hug-dev/fix-e2e
Add Uuid from the interface directly
2 parents ac8594d + 04fa638 commit 30c8162

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

e2e_tests/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ picky-asn1-der = "0.2.2"
1818
picky-asn1 = "0.2.1"
1919
serde = { version = "1.0", features = ["derive"] }
2020
sha2 = "0.9.1"
21-
parsec-client = { version = "0.8.0", features = ["testing"] }
21+
parsec-client = { version = "0.9.0", features = ["testing"] }
2222
log = "0.4.8"
2323
rand = "0.7.3"
2424

2525
[dev-dependencies]
2626
env_logger = "0.7.1"
27-
uuid = "0.7.4"
2827
rsa = "0.3.0"
2928
picky-asn1-x509 = "0.1.0"
3029
base64 = "0.12.3"

e2e_tests/tests/all_providers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright 2019 Contributors to the Parsec project.
22
// SPDX-License-Identifier: Apache-2.0
33
use e2e_tests::TestClient;
4+
use parsec_client::core::interface::operations::list_providers::Uuid;
45
use parsec_client::core::interface::requests::{AuthType, Opcode, ProviderID, Result};
56
use std::collections::HashSet;
6-
use uuid::Uuid;
77

88
#[test]
99
fn list_providers() {

e2e_tests/tests/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
// SPDX-License-Identifier: Apache-2.0
33
use e2e_tests::TestClient;
44
use log::{error, info};
5+
use parsec_client::core::interface::operations::list_providers::Uuid;
56
use std::env;
67
use std::fs;
78
use std::path::PathBuf;
89
use std::process::Command;
910
use std::thread;
1011
use std::time::Duration;
11-
use uuid::Uuid;
1212

1313
const CONFIG_TOMLS_FOLDER: &str = "tests/config/tomls";
1414
const SERVICE_CONFIG_PATH: &str = "provider_cfg/tmp_config.toml";

0 commit comments

Comments
 (0)