File: unvendor.patch

package info (click to toggle)
golang-github-smartystreets-assertions 1.6.0%2Bdfsg-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 340 kB
  • sloc: python: 80; makefile: 19
file content (38 lines) | stat: -rw-r--r-- 1,272 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Last-Update: 2016-04-04
Forwarded: not-needed
Author: Dmitry Smirnov <onlyjob@debian.org>
Description: un-vendor bundled dependencies.

--- golang-github-smartystreets-assertions-1.6.0+dfsg.orig/collections.go
+++ golang-github-smartystreets-assertions-1.6.0+dfsg/collections.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"reflect"
 
-	"github.com/smartystreets/assertions/internal/oglematchers"
+	"github.com/jacobsa/oglematchers"
 )
 
 // ShouldContain receives exactly two parameters. The first is a slice and the
--- golang-github-smartystreets-assertions-1.6.0+dfsg.orig/equality.go
+++ golang-github-smartystreets-assertions-1.6.0+dfsg/equality.go
@@ -7,7 +7,7 @@ import (
 	"reflect"
 	"strings"
 
-	"github.com/smartystreets/assertions/internal/oglematchers"
+	"github.com/jacobsa/oglematchers"
 	"github.com/smartystreets/assertions/internal/go-render/render"
 )
 
--- golang-github-smartystreets-assertions-1.6.0+dfsg.orig/quantity.go
+++ golang-github-smartystreets-assertions-1.6.0+dfsg/quantity.go
@@ -3,7 +3,7 @@ package assertions
 import (
 	"fmt"
 
-	"github.com/smartystreets/assertions/internal/oglematchers"
+	"github.com/jacobsa/oglematchers"
 )
 
 // ShouldBeGreaterThan receives exactly two parameters and ensures that the first is greater than the second.