File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ check(someValue)
115
115
116
116
Some expectations take arguments which are themselves expectations to apply to
117
117
other values. These expectations take ` Condition ` arguments which have the
118
- signature void Function(Subject)`. The conditions check expectations when they
118
+ signature ` void Function(Subject) ` . The conditions check expectations when they
119
119
are called with a ` Subject ` argument.
120
120
121
121
``` dart
@@ -128,7 +128,7 @@ Expectation extension methods checking asynchronous behavior return a `Future`.
128
128
The future should typically be awaited within the test body, however
129
129
asynchronous expectations will also ensure that the test is not considered
130
130
complete before the expectation is complete.
131
- Expectations with no concrete end conditions, such as an expectation that a
131
+ Expectations with no concrete end conditions, such as any expectation that a
132
132
future never completes, cannot be awaited and may cause a failure after the test
133
133
has already appeared to complete.
134
134
You can’t perform that action at this time.
0 commit comments