Skip to content

Commit a1a284a

Browse files
committed
test: . Improve parameter name
1 parent 92afd52 commit a1a284a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Renderer/QueryResultsRenderer.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ class RendererStoryboard {
113113

114114
/**
115115
* Returns the prettified rendered HTML, to allow 'expect' calls to be added.
116-
* @param initialResults
116+
* @param description
117117
*/
118-
public async addFrame(initialResults: string): Promise<string> {
119-
this.output += `<h2>${initialResults}:</h2>\n\n`;
118+
public async addFrame(description: string): Promise<string> {
119+
this.output += `<h2>${description}:</h2>\n\n`;
120120

121121
const container = document.createElement('div');
122122
await this.renderer.render(State.Warm, this.allTasks, container);

0 commit comments

Comments
 (0)