Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
osa1 authored Aug 12, 2024
2 parents cc46601 + 6bfe0d6 commit 3a39157
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions pkgs/checks/lib/src/checks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -908,17 +908,17 @@ final class CheckFailure {
final class FailureDetail {
/// A description of all the conditions the subject was expected to satisfy.
///
/// Each subject has a label. At the root the label is typically "a <Type>"
/// and nested subjects get a label based on the condition which extracted a
/// property for further checks. Each level of nesting is described as
/// "<label> that:" followed by an indented list of the expectations for that
/// property.
/// Each subject has a label. At the root the label is typically "a
/// &lt;Type&gt;" and nested subjects get a label based on the condition
/// which extracted a property for further checks. Each level of nesting is
/// described as "&lt;label&gt; that:" followed by an indented list of the
/// expectations for that property.
///
/// For example:
///
/// a List that:
/// has length that:
/// equals <3>
/// equals &lt;3&gt;
final Iterable<String> expected;

/// A description of the conditions the checked value satisfied.
Expand Down Expand Up @@ -956,7 +956,7 @@ final class FailureDetail {
///
/// a List that:
/// has length that:
/// equals <3>
/// equals &lt;3&gt;
///
/// If the actual value had an incorrect length, the [depth] will be `1` to
/// indicate that the failure occurred checking one of the expectations
Expand Down
2 changes: 1 addition & 1 deletion pkgs/test_core/lib/src/runner/hack_register_platform.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final _platformCallbacks = <Runtime, FutureOr<PlatformPlugin> Function()>{};
/// This globally registers a plugin for all [Loader]s. When the runner first
/// requests that a suite be loaded for one of the given runtimes, this will
/// call [plugin] to load the platform plugin. It may return either a
/// [PlatformPlugin] or a [Future<PlatformPlugin>]. That plugin is then
/// [PlatformPlugin] or a `Future<PlatformPlugin>`. That plugin is then
/// preserved and used to load all suites for all matching runtimes.
///
/// This overwrites the default plugins for those runtimes.
Expand Down

0 comments on commit 3a39157

Please sign in to comment.