notboring_test.go 212 B

1234567891011121314
  1. //go:build !boringcrypto
  2. // +build !boringcrypto
  3. package noiseutil
  4. import (
  5. "testing"
  6. "github.com/stretchr/testify/assert"
  7. )
  8. func TestEncryptLockNeeded(t *testing.T) {
  9. assert.False(t, EncryptLockNeeded)
  10. }