1
0
mirror of synced 2026-08-04 09:17:02 +00:00

WithSecurityContextTestExecutionListener > SqlScriptsTestExecutionListener

WithSecurityContextTestExecutionListener should order after
SqlScriptsTestExecutionListener so sql can setup the current user's info
in the database.

Fixes gh-3962
This commit is contained in:
Rob Winch
2016-07-06 16:09:17 -05:00
parent 5f6312c5be
commit 8ad91ef6a5
4 changed files with 89 additions and 116 deletions
@@ -144,10 +144,10 @@ public class WithSecurityContextTestExecutionListener
}
/**
* Returns {@code 1000}.
* Returns {@code 10000}.
*/
@Override
public int getOrder() {
return 1000;
return 10000;
}
}