Skip to content

Commit 753858a

Browse files
committed
remove test for removed attribute
1 parent 0f2fde9 commit 753858a

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

test/jasmine/tests/plot_api_test.js

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -526,32 +526,6 @@ describe('Test plot api', function() {
526526
.then(assertSizeAndThen(543, 432, true, 'final back to autosize'))
527527
.then(done, done.fail);
528528
});
529-
530-
it('passes update data back to plotly_relayout unmodified ' +
531-
'even if deprecated attributes have been used', function(done) {
532-
Plotly.newPlot(gd, [{y: [1, 3, 2]}])
533-
.then(function() {
534-
gd.on('plotly_relayout', function(eventData) {
535-
expect(eventData).toEqual({
536-
title: { text: 'Plotly chart' },
537-
'xaxis.title': 'X',
538-
'xaxis.title.font': {color: 'green'},
539-
'yaxis.title': 'Y',
540-
'polar.radialaxis.title': 'Radial'
541-
});
542-
done();
543-
});
544-
545-
return Plotly.relayout(gd, {
546-
title: { text: 'Plotly chart' },
547-
'xaxis.title': 'X',
548-
'xaxis.title.font': {color: 'green'},
549-
'yaxis.title': 'Y',
550-
'polar.radialaxis.title': 'Radial'
551-
});
552-
})
553-
.then(done, done.fail);
554-
});
555529
});
556530

557531
describe('Plotly.relayout subroutines switchboard', function() {

0 commit comments

Comments
 (0)