File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/assertj/db/api/assertions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,22 @@ public interface AssertOnRowCondition<T extends AssertOnRowCondition<T>> {
3232 * </p>
3333 *
3434 * <pre><code class='java'>
35- * assertThat(table).row().hasValuesSatisfying(new Condition< String> (v -> v.equals("Weaver"), "isWeaver"));
35+ * assertThat(table).row().hasValuesSatisfying(new Condition< String> (v -> v.equals("Weaver"), "isWeaver"));
3636 * </code></pre>
3737 * <p>
3838 * Example where the assertion verifies that the values of the row at end point of the first change are equal to the
3939 * values in parameter :
4040 * </p>
4141 *
4242 * <pre><code class='java'>
43- * assertThat(changes).change().rowAtEndPoint().hasValuesSatisfying(new Condition< String> (v -> v.equals("Weaver"), "isWeaver"));
43+ * assertThat(changes).change().rowAtEndPoint().hasValuesSatisfying(new Condition< String> (v -> v.equals("Weaver"), "isWeaver"));
4444 * </code></pre>
4545 *
4646 * @param expected The expected conditions.
4747 * @return {@code this} assertion object.
4848 * @throws AssertionError If the values of the row are not satisfy to the conditions in parameters.
49- * @see org.assertj.db.api.AbstractRowAssert#hasValuesSatisfying(Condition )
50- * @see org.assertj.db.api.ChangeRowAssert#hasValuesSatisfying(Condition )
49+ * @see org.assertj.db.api.AbstractRowAssert#hasValuesSatisfying(Object... )
50+ * @see org.assertj.db.api.ChangeRowAssert#hasValuesSatisfying(Object... )
5151 */
5252 T hasValuesSatisfying (Object ... expected );
5353}
You can’t perform that action at this time.
0 commit comments