Skip to content

Commit

Permalink
Keep the "or not?" style in the interactions section (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
rocboronat authored May 28, 2021
1 parent 910e95f commit df24776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ assertNotExist(R.id.button);
```java
assertChecked("Checked checkbox");
assertChecked(R.string.checked_checkbox);
assertChecked(R.id.checked_checkbox);
assertChecked(R.id.checkbox);

// ...and the other checkbox unchecked?
// ...or not?
assertUnchecked("Unchecked checkbox");
assertUnchecked(R.string.unchecked_checkbox);
assertUnchecked(R.id.unchecked_checkbox);
assertUnchecked(R.id.checkbox);
```

#### Is this view clickable?
Expand Down

0 comments on commit df24776

Please sign in to comment.