Skip to content

Commit 3e3f24f

Browse files
committed
chore: fix typo
1 parent 8260875 commit 3e3f24f

File tree

2 files changed

+2
-2
lines changed
  • sources/academy/webscraping

2 files changed

+2
-2
lines changed

sources/academy/webscraping/scraping_basics_javascript/exercises/test.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ teardown_file() {
111111
run node guardian_f1_authors.mjs
112112

113113
[[ "$output" == *' F1 '* ]]
114-
[[ "$output" == *'Giles Richards: '* ]] # writes most of them (we'll have to change this if they fire'him)
114+
[[ "$output" == *'Giles Richards: '* ]] # writes most of them (we'll have to change this if they fire him)
115115
[[ "$output" == *'Guardian sport: '* || "$output" == *'PM Media: '* ]]
116116
[[ $(echo "$output" | wc -l) -gt 5 ]]
117117
}

sources/academy/webscraping/scraping_basics_python/exercises/test.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ teardown() {
104104
run uv run --with=httpx --with=beautifulsoup4 python guardian_f1_authors.py
105105

106106
[[ "$output" == *' F1 '* ]]
107-
[[ "$output" == *'Giles Richards: '* ]] # writes most of them (we'll have to change this if they fire'him)
107+
[[ "$output" == *'Giles Richards: '* ]] # writes most of them (we'll have to change this if they fire him)
108108
[[ "$output" == *'Guardian sport: '* || "$output" == *'PM Media: '* ]]
109109
[[ $(echo "$output" | wc -l) -gt 5 ]]
110110
}

0 commit comments

Comments
 (0)