notboring_test.go 399 B

123456789101112131415
  1. //go:build !boringcrypto
  2. // +build !boringcrypto
  3. package noiseutil
  4. import (
  5. // NOTE: We have to force these imports here or boring_test.go fails to
  6. // compile correctly. This seems to be a Go bug:
  7. //
  8. // $ GOEXPERIMENT=boringcrypto go test ./noiseutil
  9. // # github.com/slackhq/nebula/noiseutil
  10. // boring_test.go:10:2: cannot find package
  11. _ "github.com/stretchr/testify/assert"
  12. )