diff --git a/tests/hackerrank/warmup/compare_triplets.rs b/tests/hackerrank/warmup/compare_triplets.rs index df48a74..5dc5ad3 100644 --- a/tests/hackerrank/warmup/compare_triplets.rs +++ b/tests/hackerrank/warmup/compare_triplets.rs @@ -10,13 +10,13 @@ mod tests { use super::*; #[derive(Debug, Deserialize)] - struct SolveMeFirstTestCase { + struct CompareTripletsTestCase { a: Vec, b: Vec, expected: Vec } - static TEST_DATA: Lazy> = + static TEST_DATA: Lazy> = Lazy::new(|| load_json("tests/data/hackerrank/warmup/compare_triplets.testcases.json")); #[test]