Fix checked mode test

TBR=ricow@google.com
BUG=

Review URL: https://codereview.chromium.org//920823002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43727 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sgjesse@google.com
2015-02-12 14:20:38 +00:00
parent f5e64533a3
commit 47236d71e5
+1 -1
View File
@@ -68,7 +68,7 @@ testIsolate() {
testVersion() {
checkValidVersion(string version) {
checkValidVersion(String version) {
RegExp re = new RegExp(r'(\d+)\.(\d+)\.(\d+)(-dev\.([^\.]*)\.([^\.]*))?');
var match = re.firstMatch(version);
Expect.isNotNull(match);