assertEquals expected result is first parameter

Parameters were in incorrect order and require swapping
This commit is contained in:
brostbeef 2021-06-30 13:57:04 -06:00 коммит произвёл Bruno Borges
Родитель 98c28a6572
Коммит edee168aaa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -48,6 +48,6 @@ public class FunctionTest {
final HttpResponseMessage ret = new Function().run(req, context);
// Verify
assertEquals(ret.getStatus(), HttpStatus.OK);
assertEquals(HttpStatus.OK, ret.getStatus());
}
}