Skip to content

Commit 773625b

Browse files
test fixes
1 parent 45719d4 commit 773625b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/logging/test/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ describe('Logging', function() {
11221122

11231123
assert.strictEqual(config, CONFIG);
11241124

1125-
var expectedDestination = 'storage.googleapis.com./' + bucket.name;
1125+
var expectedDestination = 'storage.googleapis.com/' + bucket.name;
11261126
assert.strictEqual(config.destination, expectedDestination);
11271127

11281128
callback(); // done()
@@ -1237,7 +1237,7 @@ describe('Logging', function() {
12371237
it('should call createSink with string destination', function(done) {
12381238
logging.createSink = function(name, config, callback) {
12391239
var expectedDestination = [
1240-
'bigquery.googleapis.com.',
1240+
'bigquery.googleapis.com',
12411241
'projects',
12421242
dataset.parent.projectId,
12431243
'datasets',
@@ -1361,7 +1361,7 @@ describe('Logging', function() {
13611361

13621362
it('should call createSink with string destination', function(done) {
13631363
logging.createSink = function(name, config, callback) {
1364-
var expectedDestination = 'pubsub.googleapis.com./' + topic.name;
1364+
var expectedDestination = 'pubsub.googleapis.com/' + topic.name;
13651365
assert.strictEqual(name, SINK_NAME);
13661366
assert.strictEqual(config, CONFIG);
13671367
assert.strictEqual(config.destination, expectedDestination);

0 commit comments

Comments
 (0)