Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Convert from matches to contains
Browse files Browse the repository at this point in the history
  • Loading branch information
parlough committed Jun 26, 2023
1 parent 82183eb commit 0459860
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/project_creator_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void defineTests() {
d.file(
'pubspec.yaml',
allOf([
matches('sdk: ^$languageVersion'),
contains('sdk: ^$languageVersion'),
]),
),
]),
Expand Down Expand Up @@ -103,7 +103,7 @@ void defineTests() {
d.file(
'pubspec.yaml',
allOf([
matches('sdk: ^$languageVersion'),
contains('sdk: ^$languageVersion'),
matches('sdk: flutter'),
]),
),
Expand Down Expand Up @@ -167,7 +167,7 @@ void defineTests() {
d.file(
'pubspec.yaml',
allOf([
matches('sdk: ^$languageVersion'),
contains('sdk: ^$languageVersion'),
matches('sdk: flutter'),
]),
),
Expand Down

0 comments on commit 0459860

Please sign in to comment.