Skip to content

Commit 55f3cca

Browse files
authored
fix: correct spelling of "abandoned" in altText for note images across multiple test files (#43)
1 parent 646bf32 commit 55f3cca

File tree

54 files changed

+54
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+54
-54
lines changed

exercises/01.e2e/01.problem.playwright/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/01.solution.playwright/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/02.problem.insert-user/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/02.solution.insert-user/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/03.problem.cleanup/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/03.solution.cleanup/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/04.problem.fixtures/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/01.e2e/04.solution.fixtures/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/02.e2e-mocking/01.problem.write-email/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

exercises/02.e2e-mocking/01.solution.write-email/tests/db-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function getNoteImages() {
6767
}),
6868
img({
6969
altText:
70-
'an office full of laptops and other office equipment that look like it was abandond in a rush out of the building in an emergency years ago.',
70+
'an office full of laptops and other office equipment that look like it was abandoned in a rush out of the building in an emergency years ago.',
7171
filepath: './tests/fixtures/images/notes/6.png',
7272
}),
7373
img({

0 commit comments

Comments
 (0)