Skip to content

Commit 166aeb4

Browse files
committed
plotly#189 renaming for uniformity (predominantly createGraphDiv() seems to be used across the entire suite)
1 parent 6c9d0b5 commit 166aeb4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/jasmine/tests/axes_test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ var Color = require('@src/components/color');
77
var handleTickValueDefaults = require('@src/plots/cartesian/tick_value_defaults');
88
var Axes = PlotlyInternal.Axes;
99

10-
var createGraph = require('../assets/create_graph_div');
11-
var destroyGraph = require('../assets/destroy_graph_div');
10+
var createGraphDiv = require('../assets/create_graph_div');
11+
var destroyGraphDiv = require('../assets/destroy_graph_div');
1212

1313

1414
describe('Test axes', function() {
@@ -326,10 +326,10 @@ describe('Test axes', function() {
326326
gd;
327327

328328
beforeEach(function() {
329-
gd = createGraph();
329+
gd = createGraphDiv();
330330
});
331331

332-
afterEach(destroyGraph);
332+
afterEach(destroyGraphDiv);
333333

334334
it('should set defaults on bad inputs', function() {
335335
var layout = {

0 commit comments

Comments
 (0)