Johan Haleby
Johan Haleby
Maybe try `equalTo(2L)` instead and see if that works?
@develeper84 Maybe it's due to Hamcrest is differentiating between primitive and boxed values, try `equalTo(new Integer(2))`.
I don't know what's going on, I've written a [small test](https://github.com/awaitility/awaitility/blob/master/awaitility/src/test/java/org/awaitility/BoxingTest.java) where I've tried to reproduce this but I fail to do so: ```java @Test public void non_primitive_numbers_are_successfully_matched_against_their_primitive_counter_parts() { AtomicInteger...
@cushon Thanks for bringing this to my attention. This is used to generate more descriptive error messages. Do you know of a better way that would retain the existing behavior?...
Hi @trustin. Sorry for the delay. Interesting idea. My main concern with this is that the complexity will increase and that Awaitility will begin to act more like framework than...
Not sure, maybe you could try to create a new PR?
Is there a workaround in Spring Boot 3? The previous hack that I used: ```java @Component @ConditionalOnManagementPort(ManagementPortType.DIFFERENT) public class ManagementContextFactoryBeanPostProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, String beanName)...
Okay, what can be done about this? tis 25 juli 2023 kl. 11:28 skrev Eugene Paskevich ***@***.*** >: > Hi! > > Script fails to find kubectl binary in case...
@Crazy-Hopper I'm not familiar with this, unfortunately. Do you know if this will have any other impact? Will it be backward-compatible?
Can you provide an example?