Skip to content

Commit

Permalink
Fix make check
Browse files Browse the repository at this point in the history
Signed-off-by: Madhu Challa <challa@gmail.com>
  • Loading branch information
mchalla committed Sep 8, 2020
1 parent 0ac21fe commit 1918341
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions agent-ovs/ovs/test/IntFlowManager_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2662,14 +2662,14 @@ void BaseIntFlowManagerFixture::initExpRemoteEp() {
.go(POL).done());
ADDF(Bldr().table(RT).priority(500).ip().reg(RD, 1)
.isEthDst(rmac).isIpDst("1.3.5.7")
.actions().load(DEPG, vnid)
.load(OUTPORT, tunDst.to_v4().to_ulong())
.actions().load(OUTPORT, tunDst.to_v4().to_ulong())
.load(DEPG, vnid)
.mdAct(opflexagent::flow::meta::out::REMOTE_TUNNEL)
.go(POL).done());
ADDF(Bldr().table(RT).priority(500).ip().reg(RD, 1)
.isEthDst(rmac).isIpDst("2.4.6.8")
.actions().load(DEPG, vnid)
.load(OUTPORT, tunDst.to_v4().to_ulong())
.actions().load(OUTPORT, tunDst.to_v4().to_ulong())
.load(DEPG, vnid)
.mdAct(opflexagent::flow::meta::out::REMOTE_TUNNEL)
.go(POL).done());
ADDF(Bldr().table(BR).priority(40).arp()
Expand Down

0 comments on commit 1918341

Please sign in to comment.