Skip to content

Commit

Permalink
make-pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
EskoDijk committed Jun 11, 2024
1 parent b141b56 commit 93e3d0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions otoutfilter/OTOutFilter_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020-2022, The OTNS Authors.
// Copyright (c) 2020-2024, The OTNS Authors.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -27,7 +27,7 @@
package otoutfilter

import (
"io/ioutil"
"io"
"strings"
"testing"
)
Expand Down Expand Up @@ -70,7 +70,7 @@ func TestOTOutFilter(t *testing.T) {
""

r := NewOTOutFilter(strings.NewReader(input), "Node<1> - ", nil)
output, err := ioutil.ReadAll(r)
output, err := io.ReadAll(r)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 93e3d0f

Please sign in to comment.