Browse Source

Kernel name toolbar button: Fix test failure for populateDefaults()

Mark Roth 8 years ago
parent
commit
2257b397ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/src/notebook/default-toolbar.spec.ts

+ 1 - 1
test/src/notebook/default-toolbar.spec.ts

@@ -267,7 +267,7 @@ describe('@jupyterlab/notebook', () => {
         ToolbarItems.populateDefaults(panel);
         expect(toArray(panel.toolbar.names())).to.eql(['save', 'insert', 'cut',
           'copy', 'paste', 'run', 'interrupt', 'restart', 'cellType',
-          'kernelName', 'kernelStatus']);
+          'spacer', 'kernelName', 'kernelStatus']);
       });
 
     });