Skip to content

Commit b452469

Browse files
author
Andy Hanson
committed
Fix tests
1 parent 297cb50 commit b452469

8 files changed

+11
-11
lines changed

tests/baselines/reference/exportDefaultProperty2.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace C {
1313
export default C.B;
1414

1515
//// [b.ts]
16-
import B from "./a.ts";
16+
import B from "./a";
1717
const x: B = { c: B };
1818

1919

@@ -29,5 +29,5 @@ exports.__esModule = true;
2929
exports["default"] = C.B;
3030
//// [b.js]
3131
"use strict";
32-
var a_ts_1 = require("./a.ts");
33-
var x = { c: a_ts_1["default"] };
32+
var a_1 = require("./a");
33+
var x = { c: a_1["default"] };

tests/baselines/reference/exportDefaultProperty2.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default C.B;
2121
>B : Symbol(default, Decl(a.ts, 2, 9), Decl(a.ts, 5, 13))
2222

2323
=== tests/cases/compiler/b.ts ===
24-
import B from "./a.ts";
24+
import B from "./a";
2525
>B : Symbol(B, Decl(b.ts, 0, 6))
2626

2727
const x: B = { c: B };

tests/baselines/reference/exportDefaultProperty2.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default C.B;
2121
>B : number
2222

2323
=== tests/cases/compiler/b.ts ===
24-
import B from "./a.ts";
24+
import B from "./a";
2525
>B : number
2626

2727
const x: B = { c: B };

tests/baselines/reference/exportEqualsProperty2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace C {
1313
export = C.B;
1414

1515
//// [b.ts]
16-
import B = require("./a.ts");
16+
import B = require("./a");
1717
const x: B = { c: B };
1818

1919

@@ -28,5 +28,5 @@ var C = (function () {
2828
module.exports = C.B;
2929
//// [b.js]
3030
"use strict";
31-
var B = require("./a.ts");
31+
var B = require("./a");
3232
var x = { c: B };

tests/baselines/reference/exportEqualsProperty2.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/compiler/b.ts ===
2-
import B = require("./a.ts");
2+
import B = require("./a");
33
>B : Symbol(B, Decl(b.ts, 0, 0))
44

55
const x: B = { c: B };

tests/baselines/reference/exportEqualsProperty2.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/compiler/b.ts ===
2-
import B = require("./a.ts");
2+
import B = require("./a");
33
>B : number
44

55
const x: B = { c: B };

tests/cases/compiler/exportDefaultProperty2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ namespace C {
1111
export default C.B;
1212

1313
// @Filename: b.ts
14-
import B from "./a.ts";
14+
import B from "./a";
1515
const x: B = { c: B };

tests/cases/compiler/exportEqualsProperty2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ namespace C {
1111
export = C.B;
1212

1313
// @Filename: b.ts
14-
import B = require("./a.ts");
14+
import B = require("./a");
1515
const x: B = { c: B };

0 commit comments

Comments
 (0)