Skip to content

Commit

Permalink
add code
Browse files Browse the repository at this point in the history
  • Loading branch information
lysShub committed May 25, 2024
1 parent 3e2ec6e commit 0c7d96c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ func Test_Recv_Priority(t *testing.T) {

for _, pri := range []int{hiPriority, loPriority} {
go func(p int16) {
d, err := Open(filter, Network, p, 0)
d, err := Open(filter, Network, p, Sniff)
require.NoError(t, err)
defer d.Close()

Expand Down Expand Up @@ -757,7 +757,7 @@ func Test_Recv_Priority(t *testing.T) {

for _, pri := range []int{hiPriority, loPriority} {
go func(p int16) {
d, err := Open(filter, Network, p, 0)
d, err := Open(filter, Network, p, Sniff)
require.NoError(t, err)
defer d.Close()

Expand Down

0 comments on commit 0c7d96c

Please sign in to comment.