Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gnalh committed Jan 17, 2025
1 parent 3b25066 commit 8dc867c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions cli/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::{
time::{SystemTime, UNIX_EPOCH},
};

use api::message::CreateBundleUploadResponse;
use api::{client::ApiClient, message::CreateBundleUploadResponse};
use bundle::{
parse_custom_tags, BundleMeta, BundleMetaBaseProps, BundleMetaDebugProps, BundleMetaJunitProps,
FileSet, FileSetBuilder, QuarantineBulkTestStatus, META_VERSION,
Expand All @@ -31,7 +31,6 @@ use crate::{
test_command::TestRunResult,
upload_command::UploadArgs,
};
use api::client::ApiClient;

pub struct PreTestContext {
pub meta: BundleMeta,
Expand Down
3 changes: 1 addition & 2 deletions cli/src/context_quarantine.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::collections::HashMap;

use api::client::ApiClient;
use bundle::{FileSet, FileSetBuilder, QuarantineBulkTestStatus, Test};
use constants::{EXIT_FAILURE, EXIT_SUCCESS};
use context::{
Expand All @@ -8,8 +9,6 @@ use context::{
};
use quick_junit::TestCaseStatus;

use api::client::ApiClient;

#[derive(Debug, Default, Clone)]
pub struct QuarantineContext {
pub exit_code: i32,
Expand Down
3 changes: 1 addition & 2 deletions cli/src/upload_command.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use api::client::ApiClient;
use api::message::BundleUploadStatus;
use api::{client::ApiClient, message::BundleUploadStatus};
use bundle::{BundleMeta, BundlerUtil};
use clap::{ArgAction, Args};
use constants::EXIT_SUCCESS;
Expand Down

0 comments on commit 8dc867c

Please sign in to comment.