Skip to content

Commit

Permalink
post-merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
max-trunk committed Oct 7, 2024
1 parent 2c42366 commit 2c84d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 2 additions & 0 deletions api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ pub struct CreateBundleUploadRequest {
pub repo: RepoUrlParts,
#[serde(rename = "orgUrlSlug")]
pub org_url_slug: String,
#[serde(rename = "clientVersion")]
pub client_version: String,
}

#[derive(Debug, Serialize, Clone, Deserialize)]
Expand Down
6 changes: 1 addition & 5 deletions cli/tests/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::fs;
use std::io::BufReader;
use std::path::Path;

use api::{CreateBundleUploadRequest, CreateRepoRequest, GetQuarantineBulkTestStatusRequest};
use api::{CreateRepoRequest, GetQuarantineBulkTestStatusRequest};
use assert_cmd::Command;
use assert_matches::assert_matches;
use context::repo::RepoUrlParts as Repo;
Expand All @@ -11,10 +11,6 @@ use tempfile::tempdir;
use test_utils::mock_git_repo::setup_repo_with_commit;
use test_utils::mock_server::{spawn_mock_server, RequestPayload};
use trunk_analytics_cli::codeowners::CodeOwners;
use trunk_analytics_cli::types::{
BundleMeta, FileSetType,
};
use trunk_analytics_cli::codeowners::CodeOwners;
use trunk_analytics_cli::types::{BundleMeta, FileSetType};

fn generate_mock_git_repo<T: AsRef<Path>>(directory: T) {
Expand Down

0 comments on commit 2c84d54

Please sign in to comment.