Skip to content

Commit dbbe344

Browse files
committed
Fix the naming
1 parent ca0491a commit dbbe344

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

MotionMark/tests/dev/stories/resources/stories.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ class TreeMapLayout {
380380
}
381381
}
382382

383-
class FractalBoxesController {
383+
class StoriesController {
384384
constructor(stage)
385385
{
386386
this.stage = stage;
@@ -444,7 +444,7 @@ class FractalBoxesController {
444444
}
445445

446446

447-
class FractalBoxesStage extends Stage {
447+
class StoriesStage extends Stage {
448448
constructor()
449449
{
450450
super();
@@ -455,7 +455,7 @@ class FractalBoxesStage extends Stage {
455455
async initialize(benchmark, options)
456456
{
457457
await super.initialize(benchmark, options);
458-
this.controller = new FractalBoxesController(this);
458+
this.controller = new StoriesController(this);
459459

460460
this.images = [];
461461
await this.#loadImages()
@@ -500,15 +500,15 @@ class FractalBoxesStage extends Stage {
500500
}
501501
}
502502

503-
class FractalBoxesBenchmark extends Benchmark {
503+
class StoriesBenchmark extends Benchmark {
504504
constructor(options)
505505
{
506506
const stage = document.getElementById('stage');
507-
super(new FractalBoxesStage(stage), options);
507+
super(new StoriesStage(stage), options);
508508
}
509509
}
510510

511-
window.benchmarkClass = FractalBoxesBenchmark;
511+
window.benchmarkClass = StoriesBenchmark;
512512

513513
class FakeController {
514514
constructor()

0 commit comments

Comments
 (0)