Skip to content

Commit

Permalink
Update perf test units to exact casing
Browse files Browse the repository at this point in the history
  • Loading branch information
landonxjames committed Dec 27, 2024
1 parent 655f440 commit 6ace007
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions aws/sdk/benchmarks/sdk-perf/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,20 @@ fn main() {
results: Vec::new(),
};

// Note: in the below microseconds should be case insensitive, but due to a
// bug in the perf test evaluation it is currently not. Can get rid of the
// capitalization when that is fixed.
let deserialize_config = TestConfig {
name: "deserialize.ddb".into(),
description: "Deserializing a DDB response.".into(),
unit: "microseconds".into(),
unit: "Microseconds".into(),
runs: 10,
};

let serialize_config = TestConfig {
name: "serialize.ddb".into(),
description: "Serializing a DDB request.".into(),
unit: "microseconds".into(),
unit: "Microseconds".into(),
runs: 10,
};

Expand Down

0 comments on commit 6ace007

Please sign in to comment.