Skip to content

Commit

Permalink
updating remote_test.go to point to the downloaded chromimum file (#64)
Browse files Browse the repository at this point in the history
* updating remote_test.go to point to the downloaded chromimum file

* Change the chromium bucket from chromium-browser-continuous to chromium-browser-snapshots
  • Loading branch information
RaviTezu authored and minusnine committed May 24, 2017
1 parent 8f4861d commit 51178e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion remote_test.go
Expand Up @@ -32,7 +32,7 @@ var (
runDirectGeckoDriverTests = flag.Bool("run_direct_geckodriver_tests", false, "EXPERIMENTAL. If true, also run tests directly against GeckoDriver, without Selenium 3.")

chromeDriverPath = flag.String("chrome_driver_path", "vendor/chromedriver-linux64-2.29", "The path to the ChromeDriver binary. If empty of the file is not present, Chrome tests will not be run.")
chromeBinary = flag.String("chrome_binary", "chromium", "The name of the Chrome binary or the path to it. If name is not an exact path, the PATH will be searched.")
chromeBinary = flag.String("chrome_binary", "vendor/chrome-linux/chrome", "The name of the Chrome binary or the path to it. If name is not an exact path, the PATH will be searched.")

useDocker = flag.Bool("docker", false, "If set, run the tests in a Docker container.")
runningUnderDocker = flag.Bool("running_under_docker", false, "This is set by the Docker test harness and should not be needed otherwise.")
Expand Down
2 changes: 1 addition & 1 deletion vendor/init.go
Expand Up @@ -76,7 +76,7 @@ var files = []file{
func addChrome(ctx context.Context) error {
const (
// Bucket URL: https://console.cloud.google.com/storage/browser/chromium-browser-continuous/?pli=1
storageBktName = "chromium-browser-continuous"
storageBktName = "chromium-browser-snapshots"
prefixLinux64 = "Linux_x64"
lastChangeFile = "Linux_x64/LAST_CHANGE"
chromeFilename = "chrome-linux.zip"
Expand Down

0 comments on commit 51178e3

Please sign in to comment.