Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Unreleased
-
- Import context from golang.org/x/net/ for 1.6 compatibility

# v2.4.0

Expand Down
2 changes: 1 addition & 1 deletion auth/auth_std.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package auth

import "context"
import "golang.org/x/net/context"

func newSigner(ctx context.Context) (signer, error) {
return serviceAcctSigner{}, nil
Expand Down
3 changes: 2 additions & 1 deletion integration/firestore/firestore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
package firestore

import (
"context"
"log"
"reflect"
"testing"

"firebase.google.com/go/integration/internal"

"golang.org/x/net/context"
)

func TestFirestore(t *testing.T) {
Expand Down
3 changes: 2 additions & 1 deletion integration/iid/iid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@
package iid

import (
"context"
"flag"
"log"
"os"
"testing"

"firebase.google.com/go/iid"
"firebase.google.com/go/integration/internal"

"golang.org/x/net/context"
)

var client *iid.Client
Expand Down
3 changes: 2 additions & 1 deletion storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@
package storage

import (
"context"
"errors"

"cloud.google.com/go/storage"
"firebase.google.com/go/internal"

"golang.org/x/net/context"
)

// Client is the interface for the Firebase Storage service.
Expand Down