Skip to content

Commit

Permalink
integration: Update go's http2 package URI
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Oct 8, 2015
1 parent 8e6b92b commit 509c515
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ We have the integration tests for the nghttpx proxy server. The tests are
written in the `Go programming language <http://golang.org/>`_ and uses
its testing framework. We depend on the following libraries:

* https://github.com/bradfitz/http2
* golang.org/x/net/http2
* golang.org/x/net/websocket
* https://github.com/tatsuhiro-t/go-nghttp2
* https://github.com/tatsuhiro-t/spdy
* golang.org/x/net/websocket

To download the above packages, after settings ``GOPATH``, run the
following command under ``integration-tests`` directory::
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ EXTRA_DIST = \
return.rb

itprep-local:
go get -d -v github.com/bradfitz/http2
go get -d -v golang.org/x/net/http2
go get -d -v github.com/tatsuhiro-t/go-nghttp2
go get -d -v github.com/tatsuhiro-t/spdy
go get -d -v golang.org/x/net/websocket
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/nghttpx_http1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bufio"
"bytes"
"fmt"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2/hpack"
"golang.org/x/net/websocket"
"io"
"net/http"
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/nghttpx_http2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package nghttp2
import (
"crypto/tls"
"fmt"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"io"
"io/ioutil"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/nghttpx_spdy_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package nghttp2

import (
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2/hpack"
"github.com/tatsuhiro-t/spdy"
"net/http"
"testing"
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/server_tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"crypto/tls"
"errors"
"fmt"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
"golang.org/x/net/http2"
"golang.org/x/net/http2/hpack"
"github.com/tatsuhiro-t/go-nghttp2"
"github.com/tatsuhiro-t/spdy"
"golang.org/x/net/websocket"
Expand Down

0 comments on commit 509c515

Please sign in to comment.