Skip to content

Commit 8e0c0bc

Browse files
author
vitalie
committed
Fix specs
1 parent a92e03a commit 8e0c0bc

File tree

7 files changed

+22
-7
lines changed

7 files changed

+22
-7
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ GEM
325325
rb-fsevent (0.9.8)
326326
rb-inotify (0.10.1)
327327
ffi (~> 1.0)
328-
rbtrace (0.4.12)
328+
rbtrace (0.4.14)
329329
ffi (>= 1.0.6)
330330
msgpack (>= 0.4.3)
331331
optimist (>= 3.0.0)

spec/v3/services/installation/find_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"@type" => "allowance",
6363
"id" => 1
6464
},
65+
"custom_keys" => [],
6566
"allow_migration" => false,
6667
"recently_signed_up" => false,
6768
"secure_user_hash" => nil,

spec/v3/services/organization/find_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"@type" => "allowance",
2929
"@representation" => "minimal",
3030
"id" => org.id
31-
}
31+
},
32+
"custom_keys" => []
3233
}}
3334
end
3435

@@ -63,7 +64,8 @@
6364
"@type" => "allowance",
6465
"@representation" => "minimal",
6566
"id" => org.id
66-
}
67+
},
68+
"custom_keys" => []
6769
}}
6870
end
6971

spec/v3/services/organizations/for_current_user_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@
6464
"@type" => "allowance",
6565
"@representation" => "minimal",
6666
"id" => org.id
67-
}
67+
},
68+
"custom_keys" => []
6869
}]
6970
}}
7071
end

spec/v3/services/owner/find_spec.rb

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"@type" => "allowance",
2929
"@representation" => "minimal",
3030
"id" => org.id
31-
}
31+
},
32+
"custom_keys" => []
3233
}}
3334
end
3435

@@ -54,7 +55,8 @@
5455
"@type" => "allowance",
5556
"@representation" => "minimal",
5657
"id" => org.id
57-
}
58+
},
59+
"custom_keys" => []
5860
}}
5961
end
6062

@@ -86,6 +88,7 @@
8688
"@representation" => "minimal",
8789
"id" => org.id
8890
},
91+
"custom_keys" => [],
8992
"repositories" => [{
9093
"@type" => "repository",
9194
"@href" => "/v3/repo/#{repo.id}",
@@ -232,7 +235,8 @@
232235
"@type" => "allowance",
233236
"@representation" => "minimal",
234237
"id" => org.id
235-
}
238+
},
239+
"custom_keys" => []
236240
}}
237241
end
238242

@@ -263,6 +267,7 @@
263267
"@representation" => "minimal",
264268
"id" => org.id
265269
},
270+
"custom_keys" => [],
266271
"@warnings" => [{
267272
"@type" => "warning",
268273
"message" => "query parameter organization.id not safelisted, ignored",
@@ -302,6 +307,7 @@
302307
"@representation" => "minimal",
303308
"id" => user.id
304309
},
310+
"custom_keys" => [],
305311
"recently_signed_up"=>false,
306312
"secure_user_hash" => nil,
307313
"ro_mode" => false,
@@ -334,6 +340,7 @@
334340
"@representation" => "minimal",
335341
"id" => user.id
336342
},
343+
"custom_keys" => [],
337344
"recently_signed_up"=>false,
338345
"secure_user_hash" => nil,
339346
"ro_mode" => false,
@@ -366,6 +373,7 @@
366373
"@representation" => "minimal",
367374
"id" => user.id
368375
},
376+
"custom_keys" => [],
369377
"recently_signed_up"=>false,
370378
"secure_user_hash" => nil,
371379
"ro_mode" => false,
@@ -402,6 +410,7 @@
402410
"@representation" => "minimal",
403411
"id" => user.id
404412
},
413+
"custom_keys" => [],
405414
"recently_signed_up"=>false,
406415
"secure_user_hash" => nil,
407416
"ro_mode" => false,

spec/v3/services/user/find_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"@representation" => "minimal",
4343
"id" => user.id
4444
},
45+
"custom_keys" => [],
4546
"recently_signed_up"=>false,
4647
"secure_user_hash" => nil,
4748
"ro_mode" => false,

spec/v3/services/v2_subscription/executions_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
"@representation"=>"minimal",
176176
"id"=>1
177177
},
178+
"custom_keys" => [],
178179
"email"=>"[email protected]",
179180
"is_syncing"=>nil,
180181
"synced_at"=>nil,

0 commit comments

Comments
 (0)