Skip to content

Commit 9f6b6cc

Browse files
committed
chore(packaging): update imports in tools
1 parent bfdcb6c commit 9f6b6cc

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

tools/transpiler/spec/annotations_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import {describe, it, expect, iit} from 'test_lib/test_lib';
1+
import {describe, it, expect, iit} from 'angular2/test_lib';
22
import {readFirstAnnotation} from './fixtures/annotations';
3-
import {CONST} from 'facade/src/lang';
3+
import {CONST} from 'angular2/src/facade/lang';
44

55
class Inject {}
66
class Bar {}

tools/transpiler/spec/arrow_functions_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, it, expect} from 'test_lib/test_lib';
1+
import {describe, it, expect} from 'angular2/test_lib';
22

33
var inc = x => x + 1;
44

tools/transpiler/spec/classes_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ddescribe, describe, it, expect} from 'test_lib/test_lib';
1+
import {ddescribe, describe, it, expect} from 'angular2/test_lib';
22
import {CONST} from './fixtures/annotations';
33

44
class Foo {

tools/transpiler/spec/cycle_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, it, expect} from 'test_lib/test_lib';
1+
import {describe, it, expect} from 'angular2/test_lib';
22
import {cycle} from './cycle';
33

44
export function main() {

tools/transpiler/spec/equals_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, it, expect} from 'test_lib/test_lib';
1+
import {describe, it, expect} from 'angular2/test_lib';
22

33
function same(a, b) {
44
return a === b;

tools/transpiler/spec/for_of_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {describe, it, expect} from 'test_lib/test_lib';
2-
import {ListWrapper, MapWrapper} from 'facade/src/collection';
1+
import {describe, it, expect} from 'angular2/test_lib';
2+
import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection';
33
import {IterableList} from './fixtures/facade';
44

55
export function main() {

tools/transpiler/spec/functions_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, ddescribe, it, iit, expect} from 'test_lib/test_lib';
1+
import {describe, ddescribe, it, iit, expect} from 'angular2/test_lib';
22

33
function sum(a, b) {
44
return a + b;

tools/transpiler/spec/imports_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, it, expect, IS_DARTIUM} from 'test_lib/test_lib';
1+
import {describe, it, expect, IS_DARTIUM} from 'angular2/test_lib';
22

33
import {Foo, Bar} from './foo';
44
// TODO: Does not work, as dart does not support renaming imports
@@ -7,7 +7,7 @@ import * as fooModule from './foo';
77

88
import * as exportModule from './export';
99

10-
import {Type} from 'facade/src/lang';
10+
import {Type} from 'angular2/src/facade/lang';
1111

1212
import {Baz} from './reexport';
1313

tools/transpiler/spec/instance_of_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {describe, it, expect} from 'test_lib/test_lib';
1+
import {describe, it, expect} from 'angular2/test_lib';
22

33
class Foo {}
44

tools/transpiler/spec/interfaces_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ddescribe, describe, it, iit, expect, IS_DARTIUM} from 'test_lib/test_lib';
1+
import {ddescribe, describe, it, iit, expect, IS_DARTIUM} from 'angular2/test_lib';
22
import {IMPLEMENTS} from './fixtures/annotations';
33

44
class Interface1 {

0 commit comments

Comments
 (0)