File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ test('can return user for verified signature', function(done){
69
69
var req = { query :{ } ,
70
70
headers :{ authorization :real_oauth_header , host : 'vizzuality.testhost.lan' } ,
71
71
method : 'GET' ,
72
- route : { path : '/api/v1/tables' }
72
+ path : '/api/v1/tables'
73
73
} ;
74
74
75
75
oAuth . verifyRequest ( req , function ( err , data ) {
@@ -83,7 +83,7 @@ test('returns null user for unverified signatures', function(done){
83
83
var req = { query :{ } ,
84
84
headers :{ authorization :real_oauth_header , host : 'vizzuality.testyhost.lan' } ,
85
85
method : 'GET' ,
86
- route : { path : '/api/v1/tables' }
86
+ path : '/api/v1/tables'
87
87
} ;
88
88
89
89
oAuth . verifyRequest ( req , function ( err , data ) {
@@ -97,7 +97,7 @@ test('returns null user for no oauth', function(done){
97
97
query :{ } ,
98
98
headers :{ } ,
99
99
method : 'GET' ,
100
- route : { path : '/api/v1/tables' }
100
+ path : '/api/v1/tables'
101
101
} ;
102
102
103
103
oAuth . verifyRequest ( req , function ( err , data ) {
You can’t perform that action at this time.
0 commit comments