macaroons/constraints_test: remove extraneous semicolon

This commit is contained in:
Conner Fromknecht 2018-07-31 00:20:52 -07:00
parent 9eff876f52
commit 8beeeb1944
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -99,7 +99,7 @@ func TestIpLockConstraint(t *testing.T) {
// TestIPLockBadIP tests that an IP constraint cannot be added if the
// provided string is not a valid IP address.
func TestIPLockBadIP(t *testing.T) {
constraintFunc := macaroons.IPLockConstraint("127.0.0/800");
constraintFunc := macaroons.IPLockConstraint("127.0.0/800")
testMacaroon := createDummyMacaroon(t)
err := constraintFunc(testMacaroon)
if err == nil {