Fix a typo in a parameter name
Change-Id: I533b40e47841424eec3ec979fa75b975e6b0bee2
Showing
1 changed file
with
3 additions
and
2 deletions
... | @@ -71,9 +71,10 @@ public class PathConstraintCalculationTest extends AbstractIntentTest { | ... | @@ -71,9 +71,10 @@ public class PathConstraintCalculationTest extends AbstractIntentTest { |
71 | sut.appId = APP_ID; | 71 | sut.appId = APP_ID; |
72 | } | 72 | } |
73 | 73 | ||
74 | - private PathIntent createPathIntent(List<Link> links, List<Constraint> constratins) { | 74 | + private PathIntent createPathIntent(List<Link> links, List<Constraint> constraints) { |
75 | int hops = links.size() - 1; | 75 | int hops = links.size() - 1; |
76 | - return new PathIntent(APP_ID, selector, treatment, new DefaultPath(PID, links, hops), constratins); | 76 | + return new PathIntent(APP_ID, selector, treatment, |
77 | + new DefaultPath(PID, links, hops), constraints); | ||
77 | } | 78 | } |
78 | 79 | ||
79 | /** | 80 | /** | ... | ... |
-
Please register or login to post a comment