Skip to content

Commit

Permalink
ut: fix duplicate lsp name (#4734)
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
  • Loading branch information
zhangzujian authored Nov 15, 2024
1 parent 11933d1 commit 5fe31c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/ovs/ovn-nb-logical_switch_port_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1833,7 +1833,7 @@ func (suite *OvnClientTestSuite) testUpdateLogicalSwitchPortOp() {
t.Parallel()
nbClient := suite.ovnNBClient
lspName := "test-update-op-lsp"
lsName := "test-update-op-ls"
lsName := "test-update-op-lsp-ls"

err := nbClient.CreateBareLogicalSwitch(lsName)
require.NoError(t, err)
Expand Down Expand Up @@ -2204,8 +2204,8 @@ func (suite *OvnClientTestSuite) testSetLogicalSwitchPortActivationStrategy() {
t := suite.T()
t.Parallel()
nbClient := suite.ovnNBClient
lspName := "test-update-op-lsp"
lsName := "test-update-op-ls"
lspName := "test-update-op-lsp-activation-strategy"
lsName := "test-update-op-lsp-activation-strategy-ls"

err := nbClient.CreateBareLogicalSwitch(lsName)
require.NoError(t, err)
Expand Down

0 comments on commit 5fe31c9

Please sign in to comment.