Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

storage: Use standard URL to use path instead of subdomain for bucket #638

Merged
merged 2 commits into from
Jun 4, 2015
Merged
Changes from 1 commit
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
Prev Previous commit
storage: Fixed unit test for file download URI change
  • Loading branch information
phw committed Jun 4, 2015
commit c3c16dd56238f013900277e6643a4103b897ce12
2 changes: 1 addition & 1 deletion test/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ describe('File', function() {
}

it('should create an authorized request', function(done) {
var expectedPath = util.format('https://{b}.storage.googleapis.com/{o}', {
var expectedPath = util.format('https://storage.googleapis.com/{b}/{o}', {
b: file.bucket.name,
o: encodeURIComponent(file.name)
});
Expand Down