Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
private final String type = "ColumnSet";
private final List<Column> columns;
@SuppressFBWarnings(value = "SS_SHOULD_BE_STATIC")
private final String witdth = "stretch";
private final String width = "stretch";

public ColumnSet(final List<Column> items) {
this.columns = items;
}

public String getWitdth() {
return witdth;
public String getWidth() {
return width;

Check warning on line 20 in src/main/java/jenkins/plugins/office365connector/model/adaptivecard/ColumnSet.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 20 is not covered by tests
}

public List<Column> getColumns() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/requests/adaptivecard-success.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
]
}
],
"witdth": "stretch"
"width": "stretch"
},
{
"facts": [
Expand Down