Skip to content

Commit 5204075

Browse files
committed
Changed case
1 parent 87624e7 commit 5204075

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

chrome/capabilities.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"io"
1515
"os"
1616

17-
"github.com/Diggernaut/selenium/internal/zip"
17+
"github.com/diggernaut/selenium/internal/zip"
1818
"github.com/golang/protobuf/proto"
1919
"github.com/mediabuyerbot/go-crx3/pb"
2020
)

example_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"time"
88

9-
"github.com/Diggernaut/selenium"
9+
"github.com/diggernaut/selenium"
1010
)
1111

1212
// This example shows how to navigate to a http://play.golang.org page, input a
@@ -18,7 +18,7 @@ import (
1818
// 2. Remove the word "Example" from the comment at the bottom of the
1919
// function.
2020
// 3. Run:
21-
// go test -test.run=Example$ github.com/Diggernaut/selenium
21+
// go test -test.run=Example$ github.com/diggernaut/selenium
2222
func Example() {
2323
// Start a Selenium WebDriver server instance (if one is not already
2424
// running).

firefox/capabilities.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"bytes"
66
"encoding/base64"
77

8-
"github.com/Diggernaut/selenium/internal/zip"
8+
"github.com/diggernaut/selenium/internal/zip"
99
)
1010

1111
// CapabilitiesKey is the name of the Firefox-specific key in the WebDriver

internal/seleniumtest/seleniumtest.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"testing"
2222
"time"
2323

24-
"github.com/Diggernaut/selenium"
25-
"github.com/Diggernaut/selenium/chrome"
26-
"github.com/Diggernaut/selenium/firefox"
27-
"github.com/Diggernaut/selenium/log"
28-
"github.com/Diggernaut/selenium/sauce"
24+
"github.com/diggernaut/selenium"
25+
"github.com/diggernaut/selenium/chrome"
26+
"github.com/diggernaut/selenium/firefox"
27+
"github.com/diggernaut/selenium/log"
28+
"github.com/diggernaut/selenium/sauce"
2929
socks5 "github.com/armon/go-socks5"
3030
"github.com/blang/semver"
3131
"github.com/google/go-cmp/cmp"

remote.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
"strings"
1818
"time"
1919

20-
"github.com/Diggernaut/selenium/firefox"
21-
"github.com/Diggernaut/selenium/log"
20+
"github.com/diggernaut/selenium/firefox"
21+
"github.com/diggernaut/selenium/log"
2222
"github.com/blang/semver"
2323
)
2424

sauce_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/Diggernaut/selenium"
10-
"github.com/Diggernaut/selenium/internal/seleniumtest"
11-
"github.com/Diggernaut/selenium/sauce"
9+
"github.com/diggernaut/selenium"
10+
"github.com/diggernaut/selenium/internal/seleniumtest"
11+
"github.com/diggernaut/selenium/sauce"
1212
"github.com/blang/semver"
1313
)
1414

selenium.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package selenium
33
import (
44
"time"
55

6-
"github.com/Diggernaut/selenium/chrome"
7-
"github.com/Diggernaut/selenium/firefox"
8-
"github.com/Diggernaut/selenium/log"
6+
"github.com/diggernaut/selenium/chrome"
7+
"github.com/diggernaut/selenium/firefox"
8+
"github.com/diggernaut/selenium/log"
99
)
1010

1111
// TODO(minusnine): make an enum type called FindMethod.

selenium_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"strings"
1313
"testing"
1414

15-
"github.com/Diggernaut/selenium"
16-
"github.com/Diggernaut/selenium/internal/seleniumtest"
15+
"github.com/diggernaut/selenium"
16+
"github.com/diggernaut/selenium/internal/seleniumtest"
1717
"github.com/blang/semver"
1818
"github.com/golang/glog"
1919
)

0 commit comments

Comments
 (0)