diff options
author | Nick White <git@njw.name> | 2020-02-26 16:53:14 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-02-26 16:53:14 +0000 |
commit | e320e069844b8f9c6e5d7e4e407cc90dff3b0f04 (patch) | |
tree | b5e011fcd79997c89ae20f113885d483d3814db7 /init_test.go | |
parent | a47b35dc44f0e770a1bb1f7b53b6aa11d6895e0b (diff) |
Move things around so that integralimg is in its own repository
Diffstat (limited to 'init_test.go')
-rw-r--r-- | init_test.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/init_test.go b/init_test.go deleted file mode 100644 index 37e510b..0000000 --- a/init_test.go +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright 2019 Nick White. -// Use of this source code is governed by the GPLv3 -// license that can be found in the LICENSE file. - -package preproc - -import ( - "flag" - "os" - "testing" -) - -var update = flag.Bool("update", false, "update golden files") - -// TestMain is needed to ensure flags are parsed -func TestMain(m *testing.M) { - flag.Parse() - os.Exit(m.Run()) -} |