mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:16:08 +08:00
FIX: This was causing a flaky test in Ember CLI
The path should be `/topics/bulk` not `topics/bulk` (leading slash.)
This commit is contained in:
parent
2464839cbf
commit
a560f9d44b
|
@ -11,7 +11,7 @@ acceptance("User Activity / Read - bulk actions", function (needs) {
|
|||
return helper.response(userFixtures["/topics/created-by/eviltrout.json"]);
|
||||
});
|
||||
|
||||
server.put("topics/bulk", () => {
|
||||
server.put("/topics/bulk", () => {
|
||||
return helper.response({ topic_ids: [7764, 9318] });
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user