Skip to content

Commit ade2ece

Browse files
author
John Dorlus
committed
Fixed assertion for equality that's not strict.
1 parent 317369d commit ade2ece

File tree

1 file changed

+1
-1
lines changed
  • x-pack/test/api_integration/apis/management/index_management

1 file changed

+1
-1
lines changed

x-pack/test/api_integration/apis/management/index_management/indices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export default function({ getService }) {
200200
];
201201
const sortedExpectedKeys = expectedKeys.sort();
202202
const sortedReceivedKeys = Object.keys(body[0]).sort();
203-
expect(sortedReceivedKeys).to.equal(sortedExpectedKeys);
203+
expect(sortedReceivedKeys).to.eql(sortedExpectedKeys);
204204
});
205205
});
206206

0 commit comments

Comments
 (0)