Skip to content

Commit

Permalink
Remove errant console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
worldomonation committed Aug 25, 2021
1 parent 0155d5e commit dcc4eb5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/calypso-e2e/src/media-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ export function createTestFile( {
sourceFileName: string;
testFileName?: string;
} ): string {
let fileName = `${ getTimestamp() }${ getRandomInteger( 100, 999 ) }`;
console.log( fileName );
let fileName = `${ getTimestamp() }-${ getRandomInteger( 100, 999 ) }`;
// If the output `testFileName` is defined, use that as part of the final filename.
if ( testFileName ) {
fileName += `-${ testFileName }`;
Expand Down

0 comments on commit dcc4eb5

Please sign in to comment.