Skip to content

Commit

Permalink
#5313 add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Apr 9, 2024
1 parent db9885f commit 5768e75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public ImageAssert altText(String expectedText) {
return this;
}

// @todo #5048 Check the meaning of the method
@JDIAction(value = "Assert that '{name}' is contain", isAssert = true)
public ImageAssert contain() {
jdiAssert(element().isContain(), Matchers.is(true), "Image is not contain");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public String alternateText() {
return core().attr("aria-label");
}

@JDIAction("Get if '{name}' is contain")
@JDIAction("Get if '{name}' is contain (save image original ratio)")
public boolean isContain() {
return image().hasClass("v-image__image--contain");
}
Expand Down

0 comments on commit 5768e75

Please sign in to comment.