Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ilenia-magoni committed May 13, 2024
1 parent 2e728a1 commit 383c61c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Use the `pass` keyword in the function body.
You should declare a function named `merge_sort`. Don't forget use the `pass` keyword in the function body.

```js
({ test: () => assert(_runPython(`
({ test: () => assert(runPython(`
import inspect
inspect.isfunction(__locals.get("merge_sort"))
`))})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You'll need a parameter that denotes the data collection to be sorted. Create a
Your `merge_sort` function should take a single parameter: `array`.

```js
({ test: () => assert(_runPython(`
({ test: () => assert(runPython(`
import inspect
str(inspect.signature(__locals.get('merge_sort'))) == '(array)'
`))
Expand Down

0 comments on commit 383c61c

Please sign in to comment.