@@ -1122,7 +1122,7 @@ describe('Logging', function() {
1122
1122
1123
1123
assert . strictEqual ( config , CONFIG ) ;
1124
1124
1125
- var expectedDestination = 'storage.googleapis.com. /' + bucket . name ;
1125
+ var expectedDestination = 'storage.googleapis.com/' + bucket . name ;
1126
1126
assert . strictEqual ( config . destination , expectedDestination ) ;
1127
1127
1128
1128
callback ( ) ; // done()
@@ -1237,7 +1237,7 @@ describe('Logging', function() {
1237
1237
it ( 'should call createSink with string destination' , function ( done ) {
1238
1238
logging . createSink = function ( name , config , callback ) {
1239
1239
var expectedDestination = [
1240
- 'bigquery.googleapis.com. ' ,
1240
+ 'bigquery.googleapis.com' ,
1241
1241
'projects' ,
1242
1242
dataset . parent . projectId ,
1243
1243
'datasets' ,
@@ -1361,7 +1361,7 @@ describe('Logging', function() {
1361
1361
1362
1362
it ( 'should call createSink with string destination' , function ( done ) {
1363
1363
logging . createSink = function ( name , config , callback ) {
1364
- var expectedDestination = 'pubsub.googleapis.com. /' + topic . name ;
1364
+ var expectedDestination = 'pubsub.googleapis.com/' + topic . name ;
1365
1365
assert . strictEqual ( name , SINK_NAME ) ;
1366
1366
assert . strictEqual ( config , CONFIG ) ;
1367
1367
assert . strictEqual ( config . destination , expectedDestination ) ;
0 commit comments