diff options
author | Maros Ondrejicka <mondreji@cisco.com> | 2023-02-28 16:55:01 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-03-15 17:20:57 +0000 |
commit | e7625d08566f6127acb351376797b4fdc75e3c6a (patch) | |
tree | cbe07626c5211af5ed3f55ab360b259e82d03c8c /extras/hs-test/echo_test.go | |
parent | c3542e17b5dfea27f46f0656e8f1f8092545b796 (diff) |
hs-test: use consistent naming convention
Exported indentifiers in Go start with capital letters. Only few fields
in hs-test, which are being unmarshaled from yaml are required to be
exported. Every other field name or method name should start with
lower-case letter, to be consistent with this naming convention.
Type: test
Signed-off-by: Maros Ondrejicka <mondreji@cisco.com>
Change-Id: I7eab0eef9fd08a7890c77b6ce1aeb3fa4b80f3cd
Diffstat (limited to 'extras/hs-test/echo_test.go')
-rw-r--r-- | extras/hs-test/echo_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/echo_test.go b/extras/hs-test/echo_test.go index 70f9e4c31a1..a9391af8193 100644 --- a/extras/hs-test/echo_test.go +++ b/extras/hs-test/echo_test.go @@ -6,12 +6,12 @@ func (s *VethsSuite) TestEchoBuiltin() { serverVpp.vppctl("test echo server " + " private-segment-size 1g fifo-size 4 no-echo" + - " uri tcp://" + serverVeth.IP4AddressString() + "/1234") + " uri tcp://" + serverVeth.ip4AddressString() + "/1234") clientVpp := s.getContainerByName("client-vpp").vppInstance o := clientVpp.vppctl("test echo client nclients 10000 bytes 1" + " syn-timeout 100 test-timeout 100 no-return private-segment-size 1g" + - " fifo-size 4 uri tcp://" + serverVeth.IP4AddressString() + "/1234") + " fifo-size 4 uri tcp://" + serverVeth.ip4AddressString() + "/1234") s.log(o) } |