Skip to content

Commit

Permalink
test: Update fixtures
Browse files Browse the repository at this point in the history
Findings are already detected.
  • Loading branch information
matz3 committed Mar 26, 2024
1 parent db2f574 commit adbff19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sap.ui.define([], function() {
renderButton() {
sap.ui.require(["sap/m/Button"], (Button) => {
new Button({
tap: () => console.log("Tapped") // TODO detect: Event "tap" is deprecated
tap: () => console.log("Tapped") // Event "tap" is deprecated
}).placeAt("button");
});
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sap.ui.require(["sap/m/Button"], (Button) => {
new Button({
tap: () => console.log("Tapped") // TODO detect: Event "tap" is deprecated
tap: () => console.log("Tapped") // Event "tap" is deprecated
}).placeAt("button");
});

0 comments on commit adbff19

Please sign in to comment.