Skip to content

Commit

Permalink
Fix missing imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed Jul 31, 2022
1 parent a7a8cc5 commit 581c1b6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions internal/mtail/examples_integration_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@

package mtail_test

import (
"context"
"errors"
"fmt"
"io"
"net"
"os"
"path/filepath"
"sync"
"testing"
"time"

"github.com/golang/glog"
"github.com/google/mtail/internal/metrics"
"github.com/google/mtail/internal/metrics/datum"
"github.com/google/mtail/internal/mtail"
"github.com/google/mtail/internal/testutil"
"github.com/google/mtail/internal/waker"
"golang.org/x/sys/unix"
)

// TestFilePipeStreamComparison is a unix-specific test since unix.Mkfifo is not defined on Windows.
// Two mtails both alike in dignity.
func TestFilePipeStreamComparison(t *testing.T) {
Expand Down
2 changes: 2 additions & 0 deletions internal/mtail/read_pipe_integration_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
package mtail_test

import (
"net"
"os"
"path/filepath"
"syscall"
"testing"
"time"

"github.com/google/mtail/internal/mtail"
"github.com/google/mtail/internal/testutil"
Expand Down

0 comments on commit 581c1b6

Please sign in to comment.