Skip to content

Commit

Permalink
Merge pull request #14 from t0k4rt/patch-1
Browse files Browse the repository at this point in the history
fix wget error when downloading data file
  • Loading branch information
lunetics committed Jan 1, 2015
2 parents d84b12e + 3e2f9e9 commit af4d79e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ before_script:
- sudo apt-get install geoip-database
- sudo apt-get install libgeoip-dev
- ls -l /usr/share/GeoIP
- wget https://github.com/downloads/lunetics/TimezoneBundle/GeoLiteCity.dat.gz
- curl -o GeoLiteCity.dat.gz https://cloud.github.com/downloads/lunetics/TimezoneBundle/GeoLiteCity.dat.gz
- gunzip GeoLiteCity.dat.gz
- sudo mkdir -p /usr/share/GeoIP
- sudo mv GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat
Expand Down
2 changes: 1 addition & 1 deletion Tests/Validator/TimezoneValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function testTimezoneIsInvalid($timezone)
*/
private function getContext()
{
return $this->getMockBuilder('Symfony\Component\Validator\ExecutionContext')->disableOriginalConstructor()->getMock();
return $this->getMockBuilder('Symfony\Component\Validator\Context\ExecutionContext')->disableOriginalConstructor()->getMock();
}

/**
Expand Down

0 comments on commit af4d79e

Please sign in to comment.