Skip to content

Commit

Permalink
update scanner test
Browse files Browse the repository at this point in the history
Fix dart-lang/sdk#38112

Change-Id: I81912b40972b1753af9bd994c9b5798fd2a248c2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/116247
Reviewed-by: Mike Fairhurst <mfairhurst@google.com>
Commit-Queue: Dan Rubel <danrubel@google.com>
  • Loading branch information
danrubel authored and commit-bot@chromium.org committed Sep 9, 2019
1 parent 909e251 commit 879cdef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/front_end/test/scanner_fasta_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ class ScannerTest_Fasta_UTF8 extends ScannerTest_Fasta {
}

for (int byte0 = 1; byte0 <= 0xFF; ++byte0) {
List<int> bytes = [byte0, 0];
scanBytes(bytes);
for (int byte1 = 1; byte1 <= 0xFF; ++byte1) {
List<int> bytes = [byte0, byte1, 0];
scanBytes(bytes);
Expand Down

0 comments on commit 879cdef

Please sign in to comment.