Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjebrahimi committed Aug 15, 2024
1 parent 3f66ea8 commit 09924a5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public async Task Simple_Dark()
Theme = Theme.Dark
};

var (htmlPath, imgPath) = await SaveAsHtmlAndImageAsync(benchmarkInfo, options);
var (htmlPath, _) = await SaveAsHtmlAndImageAsync(benchmarkInfo, options);

await VerifyHtmlAndImage(htmlPath, imgPath);
await VerifyHtml(htmlPath);
}

[Fact]
Expand All @@ -37,8 +37,8 @@ public async Task Simple_Light()
Theme = Theme.Light
};

var (htmlPath, imgPath) = await SaveAsHtmlAndImageAsync(benchmarkInfo, options);
var (htmlPath, _) = await SaveAsHtmlAndImageAsync(benchmarkInfo, options);

await VerifyHtmlAndImage(htmlPath, imgPath);
await VerifyHtml(htmlPath);
}
}

0 comments on commit 09924a5

Please sign in to comment.