Skip to content

Commit f84bc66

Browse files
committed
missing space
1 parent 8dbb5e0 commit f84bc66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/MetricsViewer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<v-card-item>
2121
<div class="tiles-text">
2222
<div class="spacing-10"></div>
23-
<div class="text-h6 mb-1">Total count of Suggestions(Prompts)</div>
23+
<div class="text-h6 mb-1">Total count of Suggestions (Prompts)</div>
2424
<div class="text-caption">
2525
Over the last 28 days
2626
</div>

tests/metrics.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test('metrics visible', tag, async ({ page }) => {
66
await page.goto('/');
77

88
await expect(page.getByText('Acceptance Rate (by count)')).toBeVisible();
9-
await expect(page.getByText('Total count of Suggestions(Prompts)')).toBeVisible();
9+
await expect(page.getByText('Total count of Suggestions (Prompts)')).toBeVisible();
1010
await expect(page.getByRole('heading', { name: 'Total Lines Suggested | Total' })).toBeVisible();
1111
});
1212

@@ -20,7 +20,7 @@ test('data returned', tag, async ({ page }) => {
2020
expect(parseInt(linesAccepted as string)).toBeGreaterThan(0);
2121

2222
await expect(page.getByText('Acceptance Rate (by count)')).toBeVisible();
23-
await expect(page.getByText('Total count of Suggestions(Prompts)')).toBeVisible();
23+
await expect(page.getByText('Total count of Suggestions (Prompts)')).toBeVisible();
2424
await expect(page.getByRole('heading', { name: 'Total Lines Suggested | Total' })).toBeVisible();
2525
});
2626

0 commit comments

Comments
 (0)