We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22432b commit e013a89Copy full SHA for e013a89
ovs/match_test.go
@@ -2,7 +2,6 @@ package ovs
2
3
import (
4
"fmt"
5
- "math"
6
"net"
7
"reflect"
8
"testing"
@@ -724,11 +723,6 @@ func TestMatchVLANTCI(t *testing.T) {
724
723
m Match
725
out string
726
}{
727
- {
728
- desc: "uint16 mask underflow",
729
- m: VLANTCI(10, 0>>(math.MaxUint16/2)),
730
- out: "vlan_tci=0x000a",
731
- },
732
{
733
desc: "TCI 10, no mask",
734
m: VLANTCI(10, 0),
@@ -762,11 +756,6 @@ func TestMatchConnectionTrackingMark(t *testing.T) {
762
756
763
757
764
758
765
766
767
- m: ConnectionTrackingMark(10, 0>>(math.MaxUint16/2)),
768
- out: "ct_mark=0x0000000a",
769
770
759
771
760
desc: "Mark 10, no mask",
772
761
m: ConnectionTrackingMark(10, 0),
0 commit comments