Skip to content

Commit

Permalink
fix(iedriver): download url fix for iedriver (#54)
Browse files Browse the repository at this point in the history
closes #53
  • Loading branch information
cnishina authored and heathkit committed Jun 23, 2016
1 parent cd60fc4 commit 81c2aa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/binaries/ie_driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class IEDriver extends Binary {

constructor() {
super();
this.name = 'IEDriver';
this.name = 'IEDriverServer';
this.versionCustom = IEDriver.versionDefault;
this.prefixDefault = 'IEDriverServer';
this.suffixDefault = '.zip';
Expand All @@ -40,7 +40,7 @@ export class IEDriver extends Binary {
}

url(): string {
let urlBase = this.cdn + this.shortVersion(this.version()) + '/';
let urlBase = this.cdn + this.shortVersion(this.versionCustom) + '/';
let filename = this.prefix() + this.version() + this.suffix();
return urlBase + filename;
}
Expand Down

0 comments on commit 81c2aa3

Please sign in to comment.