Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emhagman committed Jan 12, 2024
1 parent a1ab213 commit c0c2475
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ mod tests {
schedule: None,
generate_docs: None,
defer_to_job_id: None,
defer_to_env_id: None,
};
let expected_remote = RemoteJob {
id: None,
Expand All @@ -148,6 +149,7 @@ mod tests {
state: 1,
generate_docs: false,
deferring_job_definition_id: None,
deferring_environment_id: None,
schedule: Schedule {
cron: "0/10 * * * *".to_string(),
date: Date {
Expand Down Expand Up @@ -189,6 +191,7 @@ mod tests {
schedule: None,
generate_docs: None,
defer_to_job_id: None,
defer_to_env_id: None,
};
let converted_job = RemoteJob::from_local_job(
"test_some_snake_case_thing",
Expand Down Expand Up @@ -219,6 +222,7 @@ mod tests {
schedule: None,
generate_docs: None,
defer_to_job_id: None,
defer_to_env_id: None,
};
let converted_job = RemoteJob::from_local_job(
"test_some_snake_case_thing",
Expand Down

0 comments on commit c0c2475

Please sign in to comment.