fix: anonymous policy test job-details

We need to access job-details differently when they have a namespace
due to recent namespace changes - we need to make the tests reflect
that.
This commit is contained in:
Michael Klein
2022-02-17 12:45:01 +01:00
parent 31cbd77a7a
commit dadbb0e16f

View File

@@ -322,9 +322,9 @@ module('Acceptance | job detail (with namespaces)', function (hooks) {
});
await JobDetail.visit({
id: job.id,
namespace: server.db.namespaces[1].name,
id: `${job.id}@${server.db.namespaces[1].name}`,
});
assert.notOk(JobDetail.execButton.isDisabled);
});