Skip to content

Commit cf2cb80

Browse files
committed
undo export import workarounds
1 parent a3bf62c commit cf2cb80

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

src/vs/base/test/node/testUtils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ export function getPathFromAmdModule(requirefn: typeof require, relativePath: st
1616
return URI.parse(requirefn.toUrl(relativePath)).fsPath;
1717
}
1818

19-
// export import flakySuite = testUtils.flakySuite;
20-
export const flakySuite = testUtils.flakySuite;
19+
export import flakySuite = testUtils.flakySuite;

src/vs/platform/notification/common/notification.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@
66
import { IAction } from 'vs/base/common/actions';
77
import { Event } from 'vs/base/common/event';
88
import { IDisposable } from 'vs/base/common/lifecycle';
9+
import BaseSeverity from 'vs/base/common/severity';
910
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
1011

11-
export enum Severity {
12-
Ignore = 0,
13-
Info = 1,
14-
Warning = 2,
15-
Error = 3
16-
}
12+
export import Severity = BaseSeverity;
1713

1814
export const INotificationService = createDecorator<INotificationService>('notificationService');
1915

0 commit comments

Comments
 (0)