Closed ShivamChavan01 closed 1 month ago
@rohanKanojia i dont know how to add labels and please check as im right to issue this task or not
@ShivamChavan01 : Do you want to get this issue assigned to you?
@rohanKanojia yes & one more thing why is the issue number id is #3394 is it okay ??
i would like to work on this issue can you assign this to me
@SamarthKoli : This issue is already assigned to someone else. Could you please check for some other open issue?
yes & one more thing why is the issue number id is https://github.com/eclipse-jkube/jkube/issues/3394 is it okay ??
@ShivamChavan01 : Sorry, I don't understand your question. Could you please elaborate?
Component
JKube Kit
Task description
In the latest versions of Assertj
asList()
DSL method has been marked as deprecated: The class ImageStreamServiceTest presents the issue: Usage of the deprecated method asList() from AssertJ.The following lines of code: https://github.com/eclipse-jkube/jkube/blob/d2afc38505144ef4d5c1ff084d8e8ab83e9e5637/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/openshift/ImageStreamServiceTest.java#L248
https://github.com/eclipse-jkube/jkube/blob/d2afc38505144ef4d5c1ff084d8e8ab83e9e5637/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/openshift/ImageStreamServiceTest.java#L253
users are advised to use
asInstanceOf(InstanceOfAssertFactories.list(type.class))
instead, we need to updateasList()
calls with this.Expected Behavior
AssertJ's
asList()
is replaced withasInstanceOf(InstanceOfAssertFactories.list(type.class))
Acceptance Criteria
asList()
DSL method call is replaced withasInstanceOf(InstanceOfAssertFactories.list(type.class))
in all places