From 8beeeb19441c8c6b0a415ebd26884454a1413b86 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Tue, 31 Jul 2018 00:20:52 -0700 Subject: [PATCH] macaroons/constraints_test: remove extraneous semicolon --- macaroons/constraints_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macaroons/constraints_test.go b/macaroons/constraints_test.go index a0e7c67e..b5333b03 100644 --- a/macaroons/constraints_test.go +++ b/macaroons/constraints_test.go @@ -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 {