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
tom
2014-09-18 12:08:29 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f6ab215c9981f57261dab6fc84740f6d6f4698c1
f6ab215c
1 parent
37147542
Changed the way ProviderId is made to include URI scheme portion.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/trivial/src/test/java/org/onlab/onos/net/trivial/flow/impl/SimpleFlowRuleManagerTest.java
core/trivial/src/test/java/org/onlab/onos/net/trivial/flow/impl/SimpleFlowRuleManagerTest.java
View file @
f6ab215
...
...
@@ -48,7 +48,7 @@ import static org.onlab.onos.net.flow.FlowRuleEvent.Type.*;
*/
public
class
SimpleFlowRuleManagerTest
{
private
static
final
ProviderId
PID
=
new
ProviderId
(
"foo"
);
private
static
final
ProviderId
PID
=
new
ProviderId
(
"
of"
,
"
foo"
);
private
static
final
DeviceId
DID
=
DeviceId
.
deviceId
(
"of:001"
);
private
static
final
Device
DEV
=
new
DefaultDevice
(
PID
,
DID
,
Type
.
SWITCH
,
""
,
""
,
""
,
""
);
...
...
Please
register
or
login
to post a comment