Skip to content

Commit bbf017c

Browse files
authored
disable testing the stable channel on travis (#1291)
* disable testing the stable channel on travis * update the generated output
1 parent 10e16a2 commit bbf017c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ language: dart
22
sudo: false
33
dart:
44
- dev
5-
- stable
5+
# Disabled - re-enable once dev goes stable (see #1290).
6+
# - stable
67
env:
78
- GEN_SDK_DOCS=true
89
- GEN_SDK_DOCS=false

testing/test_package_docs/fake/ExtraSpecialList/contains.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
158158
<code>element</code>, unless it has a more efficient way to find an element
159159
equal to <code>element</code>.</p>
160160
<p>The equality used to determine whether <code>element</code> is equal to an element of
161-
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
161+
the iterable defaults to the <code>Object.==</code> of the element.</p>
162162
<p>Some types of iterable may have a different equality used for its elements.
163163
For example, a <code>Set</code> may have a custom equality
164164
(see <code>Set.identical</code>) that its <code>contains</code> uses.

testing/test_package_docs/fake/SpecialList/contains.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
158158
<code>element</code>, unless it has a more efficient way to find an element
159159
equal to <code>element</code>.</p>
160160
<p>The equality used to determine whether <code>element</code> is equal to an element of
161-
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
161+
the iterable defaults to the <code>Object.==</code> of the element.</p>
162162
<p>Some types of iterable may have a different equality used for its elements.
163163
For example, a <code>Set</code> may have a custom equality
164164
(see <code>Set.identical</code>) that its <code>contains</code> uses.

0 commit comments

Comments
 (0)