Skip to content

Commit 91854a7

Browse files
committed
fixed silly bug
1 parent a0088da commit 91854a7

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

core/src/main/kotlin/org/evomaster/core/problem/httpws/service/HttpWsSampler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ abstract class HttpWsSampler<T> : ApiWsSampler<T>() where T : Individual{
138138

139139
private fun handleAuthInfo(i: AuthenticationDto) {
140140

141-
if(i.createUsers != null) {
141+
if(i.createUsers == null) {
142142
val auth = try {
143143
HttpWsAuthenticationInfo.fromDto(i, config.overrideAuthExternalEndpointURL)
144144
} catch (e: Exception) {

release_notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Under development in `master` branch.
44

5+
### New Features
6+
- Support of WFC 0.6.0 for dynamic creation of users in auth configurations.
7+
8+
59
### Addressed GitHub Issues
610
- #1286: SSL verification error during the execution of generated tests
711
- #1071: Error in EvoMaster 3.1.0: Black-Box Testing Initialization Failure with SSLException

0 commit comments

Comments
 (0)