(x crypto.PublicKey)
| 60 | type testAdminPublicKey string |
| 61 | |
| 62 | func (k testAdminPublicKey) Equal(x crypto.PublicKey) bool { |
| 63 | other, ok := x.(testAdminPublicKey) |
| 64 | return ok && k == other |
| 65 | } |
| 66 | |
| 67 | func TestUnsyncedConfigAccess(t *testing.T) { |
| 68 | // each test is performed in sequence, so |
no outgoing calls
no test coverage detected