Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
chore(pubspec): bump SDK version (>= 1.4.0)
Browse files Browse the repository at this point in the history
Closes #1009
  • Loading branch information
vicb authored and [email protected] committed May 22, 2014
1 parent efcdca3 commit b691fd9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ packages:
code_transformers:
description: code_transformers
source: hosted
version: "0.1.3"
version: "0.1.3+1"
collection:
description: collection
source: hosted
Expand All @@ -36,7 +36,7 @@ packages:
guinness:
description: guinness
source: hosted
version: "0.1.3"
version: "0.1.4"
html5lib:
description: html5lib
source: hosted
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors:
description: Angular for dart.
homepage: https://angulardart.org
environment:
sdk: '>=1.3.0'
sdk: '>=1.4.0'
dependencies:
args: '>=0.10.0 < 0.11.0'
analyzer: '>=0.13.0 <0.14.0'
Expand Down
8 changes: 1 addition & 7 deletions test/core/scope_spec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1291,13 +1291,7 @@ void main() {

it('should properly watch array of fields 3', (RootScope rootScope, Logger log) {
rootScope.context['foo'] = 'abc';
String expression = 'foo.contains("b")';
if (identical(1, 1.0)) { // dart2js
// The previous expression does not work in dart2js (http://dartbug.com/18673)
// Use a working one for now.
expression = 'foo.contains("b", 0)';
}
rootScope.watch(expression, (v, o) => log([v, o]));
rootScope.watch('foo.contains("b")', (v, o) => log([v, o]));
expect(log).toEqual([]);
rootScope.apply();
expect(log).toEqual([[true, null]]);
Expand Down

0 comments on commit b691fd9

Please sign in to comment.