File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/platform/actions/test/common Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import * as assert from 'assert' ;
7
7
import { DisposableStore } from 'vs/base/common/lifecycle' ;
8
+ import { generateUuid } from 'vs/base/common/uuid' ;
8
9
import { isIMenuItem , MenuId , MenuRegistry } from 'vs/platform/actions/common/actions' ;
9
10
import { MenuService } from 'vs/platform/actions/common/menuService' ;
10
11
import { NullCommandService } from 'vs/platform/commands/common/commands' ;
@@ -29,7 +30,7 @@ suite('MenuService', function () {
29
30
30
31
setup ( function ( ) {
31
32
menuService = new MenuService ( NullCommandService , new InMemoryStorageService ( ) ) ;
32
- testMenuId = new MenuId ( ' testo' ) ;
33
+ testMenuId = new MenuId ( ` testo/ ${ generateUuid ( ) } ` ) ;
33
34
disposables . clear ( ) ;
34
35
} ) ;
35
36
You can’t perform that action at this time.
0 commit comments