| commit | 5f9cdf9102362c4307d19e13f49af188e9253eab | [log] [tgz] |
|---|---|---|
| author | sam boyer <tech@samboyer.org> | Sun Aug 28 01:43:42 2016 -0400 |
| committer | sam boyer <tech@samboyer.org> | Sun Aug 28 01:43:54 2016 -0400 |
| tree | 0c3e7d069d586872e9bd9658c4d098d9c337e2b4 | |
| parent | 59520302c8371e84cf0fa0267d67f15934b5c6b6 [diff] |
Fix missing error fmt args
diff --git a/cfg/lock_test.go b/cfg/lock_test.go index 7f9ac95..63c035b 100644 --- a/cfg/lock_test.go +++ b/cfg/lock_test.go
@@ -107,6 +107,6 @@ } if !strings.Contains(string(out), expectSubpkgYaml) { - t.Errorf("Expected %q\nto contain\n%q") + t.Errorf("Expected %q\nto contain\n%q", string(out), expectSubpkgYaml) } }