github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/worker/muxhttpserver/package_test.go (about)

     1  // Copyright 2020 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package muxhttpserver_test
     5  
     6  import (
     7  	"testing"
     8  
     9  	gc "gopkg.in/check.v1"
    10  
    11  	"github.com/juju/juju/pki"
    12  	pki_test "github.com/juju/juju/pki/test"
    13  )
    14  
    15  func TestSuite(t *testing.T) { gc.TestingT(t) }
    16  
    17  func init() {
    18  	// Use full strength key profile
    19  	pki.DefaultKeyProfile = pki_test.OriginalDefaultKeyProfile
    20  }