Commit 9622536a by Ryan McKinley Committed by GitHub

Dashboard: Remove isTimezoneUtc (#24754)

parent 2b23f819
......@@ -13,9 +13,7 @@ describe('TimeRegionManager', () => {
},
panelCtrl: {
range: {},
dashboard: {
isTimezoneUtc: () => false,
},
dashboard: {},
},
};
......
......@@ -57,9 +57,6 @@ export function ControllerTestContext(this: any) {
self.dashboard.getTimezone = () => {
return self.isUtc ? 'utc' : 'browser';
};
self.dashboard.isTimezoneUtc = () => {
return self.isUtc;
};
$rootScope.appEvent = sinon.spy();
$rootScope.onAppEvent = sinon.spy();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment