Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ray Milkey
2015-02-25 08:34:55 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
67c221fc0cdf2c6bd48aa4af939a5c516abb7ac7
67c221fc
1 parent
5f361089
Fix a typo in a parameter name
Change-Id: I533b40e47841424eec3ec979fa75b975e6b0bee2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
core/net/src/test/java/org/onosproject/net/intent/impl/PathConstraintCalculationTest.java
core/net/src/test/java/org/onosproject/net/intent/impl/PathConstraintCalculationTest.java
View file @
67c221f
...
...
@@ -71,9 +71,10 @@ public class PathConstraintCalculationTest extends AbstractIntentTest {
sut
.
appId
=
APP_ID
;
}
private
PathIntent
createPathIntent
(
List
<
Link
>
links
,
List
<
Constraint
>
constra
tin
s
)
{
private
PathIntent
createPathIntent
(
List
<
Link
>
links
,
List
<
Constraint
>
constra
int
s
)
{
int
hops
=
links
.
size
()
-
1
;
return
new
PathIntent
(
APP_ID
,
selector
,
treatment
,
new
DefaultPath
(
PID
,
links
,
hops
),
constratins
);
return
new
PathIntent
(
APP_ID
,
selector
,
treatment
,
new
DefaultPath
(
PID
,
links
,
hops
),
constraints
);
}
/**
...
...
Please
register
or
login
to post a comment