GUI -- Buttons added to topo and device views that navigate to new flows table view.

Change-Id: Ibea4415d3c1fc717e609aebcd2205d0bba01c96d
diff --git a/web/gui/src/main/webapp/tests/app/fw/mast/mast-spec.js b/web/gui/src/main/webapp/tests/app/fw/mast/mast-spec.js
index 67fbfbb..26ccef8 100644
--- a/web/gui/src/main/webapp/tests/app/fw/mast/mast-spec.js
+++ b/web/gui/src/main/webapp/tests/app/fw/mast/mast-spec.js
@@ -19,21 +19,18 @@
  */
 describe('Controller: MastCtrl', function () {
     // instantiate the masthead module
-    beforeEach(module('onosMast'));
+    beforeEach(module('onosMast', 'onosUtil'));
 
-    var $log, ctrl, ms;
+    var $log, ctrl, ms, fs;
 
     // we need an instance of the controller
-    beforeEach(inject(function(_$log_, $controller, MastService) {
+    beforeEach(inject(function(_$log_, $controller, MastService, FnService) {
         $log = _$log_;
         ctrl = $controller('MastCtrl');
         ms = MastService;
+        fs = FnService;
     }));
 
-    it('should start with no radio buttons', function () {
-        expect(ctrl.radio).toBeNull();
-    });
-
     it('should declare height to be 36', function () {
         expect(ms.mastHeight()).toBe(36);
     })