Skip to content

Commit bb5a5e7

Browse files
author
Gonzalo Diaz
committed
[REFACTOR] Naming fixed.
1 parent 3e025fe commit bb5a5e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/hackerrank/warmup/compare_triplets.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ mod tests {
1010
use super::*;
1111

1212
#[derive(Debug, Deserialize)]
13-
struct SolveMeFirstTestCase {
13+
struct CompareTripletsTestCase {
1414
a: Vec<i32>,
1515
b: Vec<i32>,
1616
expected: Vec<i32>
1717
}
1818

19-
static TEST_DATA: Lazy<Vec<SolveMeFirstTestCase>> =
19+
static TEST_DATA: Lazy<Vec<CompareTripletsTestCase>> =
2020
Lazy::new(|| load_json("tests/data/hackerrank/warmup/compare_triplets.testcases.json"));
2121

2222
#[test]

0 commit comments

Comments
 (0)