Skip to content

Commit

Permalink
Fix last unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon committed Nov 23, 2024
1 parent c49008d commit f43ba30
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
removeColorsFromData,
getDataMappings,
PlotlyChartWidgetData,
getReplaceableWebGlTraceIndexes,
getReplaceableWebGlTraceIndices,
hasUnreplaceableWebGlTraces,
setWebGlTraceType,
} from './PlotlyExpressChartUtils';
Expand Down Expand Up @@ -209,7 +209,7 @@ describe('areSameAxisRange', () => {
describe('getReplaceableWebGlTraceIndexes', () => {
it('should return the indexes of any trace with gl', () => {
expect(
getReplaceableWebGlTraceIndexes([
getReplaceableWebGlTraceIndices([
{
type: 'scattergl',
},
Expand All @@ -228,7 +228,7 @@ describe('getReplaceableWebGlTraceIndexes', () => {

it('should return an empty set if there are no traces with gl', () => {
expect(
getReplaceableWebGlTraceIndexes([
getReplaceableWebGlTraceIndices([
{
type: 'scatter',
},
Expand Down

0 comments on commit f43ba30

Please sign in to comment.