Remove redundant assertions

These are more things that are already covered elsewhere.
This commit is contained in:
Buck Doyle
2020-04-03 12:52:39 -05:00
parent 4fa139a2fd
commit 2afe4441b4

View File

@@ -284,12 +284,7 @@ module('Acceptance | exec', function(hooks) {
let mockSocket = new MockSocket();
let mockSockets = Service.extend({
getTaskStateSocket(taskState, command) {
assert.equal(taskState.name, task.name);
assert.equal(taskState.allocation.id, allocation.id);
assert.equal(command, '/bin/bash');
getTaskStateSocket() {
assert.step('Socket built');
return mockSocket;