Skip to content

Commit 21f371f

Browse files
author
Gonzalo Diaz
committed
[Hacker Rank] Interview Preparation Kit: Recursion: Davis' Staircase. Naming fixed.
1 parent a2e0e86 commit 21f371f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/hackerrank/warmup/staircase.rs

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

1212
#[derive(Debug, Deserialize)]
13-
struct AveryBigSumTestCase {
13+
struct StaircaseTestCase {
1414
input: i32,
1515
expected: String
1616
}
1717

18-
static TEST_DATA: Lazy<Vec<AveryBigSumTestCase>> =
18+
static TEST_DATA: Lazy<Vec<StaircaseTestCase>> =
1919
Lazy::new(|| load_json("tests/data/hackerrank/warmup/staircase.testcases.json"));
2020

2121
#[test]

0 commit comments

Comments
 (0)