Build: Updates goconvey to work on go1.12 (#16483)

This commit is contained in:
Carl Bergquist
2019-04-10 14:08:19 +02:00
committed by GitHub
parent 2d7fc55df7
commit 4f46e739a2
26 changed files with 2578 additions and 103 deletions
@@ -0,0 +1,23 @@
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
// https://github.com/sergi/go-diff
// See the included LICENSE file for license details.
//
// go-diff is a Go implementation of Google's Diff, Match, and Patch library
// Original library is Copyright (c) 2006 Google Inc.
// http://code.google.com/p/google-diff-match-patch/
package diffmatchpatch
func min(x, y int) int {
if x < y {
return x
}
return y
}
func max(x, y int) int {
if x > y {
return x
}
return y
}