I'm migrating my mule project from version 3.6 to 3.7. In version 3.6 the test #[NullPayload.getInstance().equals(payload)] return true when my payload is null, however in version 3.7 when the payload is null this tests return false.
I saw in the 3.7 release note that the bug MULE-6427 (#[payload == null] is not true when the payload is NullPayload) was fix.
Is this correct?
Now I have to test payload == null?
it's a bug #[NullPayload.getInstance().equals(payload)] return false when the payload is null in version 3.7?