Skip to content

Commit

Permalink
Merge branch 'main' into test-timeline-custom
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Sep 28, 2023
2 parents 3ed2c92 + 98f1969 commit bf78867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/core/engine/command/chromeTrace.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { parse } from '../../../chrome/traceCategoriesParser.js';
import { parseCPUTrace } from '../../../chrome/parseCpuTrace.js';
const log = intel.getLogger('browsertime.command.chrometrace');
export class chromeTrace {
export class ChromeTrace {
constructor(engineDelegate, index, options, result) {
this.engineDelegate = engineDelegate;
this.options = options;
Expand Down
4 changes: 2 additions & 2 deletions lib/core/engine/iteration.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { Select } from './command/select.js';
import { Debug } from './command/debug.js';
import { AndroidCommand } from './command/android.js';
import { ChromeDevelopmentToolsProtocol } from './command/chromeDevToolsProtocol.js';
import { chromeTrace } from './command/chromeTrace.js';
import { ChromeTrace } from './command/chromeTrace.js';
import {
addConnectivity,
removeConnectivity
Expand Down Expand Up @@ -165,7 +165,7 @@ export class Iteration {
engineDelegate,
options.browser
);
const trace = new chromeTrace(engineDelegate, index, options, result);
const trace = new ChromeTrace(engineDelegate, index, options, result);
const android = new Android(options);
const debug = new Debug(browser, options);
const commands = {
Expand Down

0 comments on commit bf78867

Please sign in to comment.