Skip to content

Commit

Permalink
New version of jsonequaliser
Browse files Browse the repository at this point in the history
  • Loading branch information
quii committed May 15, 2017
1 parent b567ab6 commit bb74a7c
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 45 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.1

RUN apk add --update wget bash ca-certificates && \
wget -O mockingjay-server https://github.com/quii/mockingjay-server/releases/download/1.10.3/linux_amd64_mockingjay-server --no-check-certificate && \
wget -O mockingjay-server https://github.com/quii/mockingjay-server/releases/download/1.10.4/linux_amd64_mockingjay-server --no-check-certificate && \
chmod +x mockingjay-server && \
apk del wget bash && \
rm -rf /var/cache/apk/*
Expand Down
6 changes: 5 additions & 1 deletion acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ func TestIssue42(t *testing.T) {
req.Header["Content-Butt"] = []string{"application/json"}

client := http.Client{}
res, _ := client.Do(req)
res, err := client.Do(req)

if err != nil {
t.Fatal(err)
}

defer res.Body.Close()

Expand Down
10 changes: 5 additions & 5 deletions bindata_assetfs.go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ui/src/client/public/js/bundle.js.map

Large diffs are not rendered by default.

41 changes: 28 additions & 13 deletions vendor/github.com/quii/jsonequaliser/compatability.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 0 additions & 21 deletions vendor/github.com/quii/jsonequaliser/examples.go

This file was deleted.

14 changes: 13 additions & 1 deletion vendor/github.com/quii/jsonequaliser/json.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
"revisionTime": "2016-01-29T19:31:06Z"
},
{
"checksumSHA1": "E8S9T4RwTVB7/5Bv5i7IYrmtSaI=",
"checksumSHA1": "SthMo/85FqNBziukqsrfSRy0grg=",
"path": "github.com/quii/jsonequaliser",
"revision": "4c6bbfba9eff4df40e99f9c8e77f02de3df9038a",
"revisionTime": "2016-01-31T08:47:41Z"
"revision": "603769fdcecda4881a2ce56f6a7f090117ae2110",
"revisionTime": "2017-05-11T13:51:28Z"
},
{
"checksumSHA1": "Bn333k9lTndxU3D6n/G5c+GMcYY=",
Expand Down

0 comments on commit bb74a7c

Please sign in to comment.