File: unvendor.patch

package info (click to toggle)
golang-github-smartystreets-assertions 1.10.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 580 kB
  • sloc: python: 80; makefile: 41; sh: 15
file content (39 lines) | stat: -rw-r--r-- 1,007 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
39
Last-Update: 2016-04-04
Forwarded: not-needed
Author: Dmitry Smirnov <onlyjob@debian.org>
Description: un-vendor bundled dependencies.

--- a/collections.go
+++ b/collections.go
@@ -4,7 +4,7 @@
 	"fmt"
 	"reflect"
 
-	"github.com/smartystreets/assertions/internal/oglematchers"
+	"github.com/jacobsa/oglematchers"
 )
 
 // ShouldContain receives exactly two parameters. The first is a slice and the
--- a/equality.go
+++ b/equality.go
@@ -7,8 +7,8 @@
 	"reflect"
 	"strings"
 
+	"github.com/jacobsa/oglematchers"
 	"github.com/smartystreets/assertions/internal/go-render/render"
-	"github.com/smartystreets/assertions/internal/oglematchers"
 )
 
 // ShouldEqual receives exactly two parameters and does an equality check
--- a/quantity.go
+++ b/quantity.go
@@ -3,7 +3,7 @@
 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.