Ray Milkey

Fix a typo in a parameter name

Change-Id: I533b40e47841424eec3ec979fa75b975e6b0bee2
...@@ -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 /**
......