Skip to content

Commit

Permalink
Fix: Spelling (#33)
Browse files Browse the repository at this point in the history
Fixing Spelling
Co-authored-by: MDW <--unset>
  • Loading branch information
mdeweerd authored Jan 30, 2024
1 parent a20dad3 commit f2f611f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ You can add these hooks to your existing pre-commit workflow by adding a step to
See the following example step added to a `ubuntu-latest` pre-commit workflow:

```yaml
- name: Install Dependancies
- name: Install Dependencies
run: |
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

@pytest.fixture(scope="function")
def arduino_lint() -> ArduinoLint:
"""Create an arduino lint object fixture for testing withs."""
"""Create an arduino lint object fixture for testing with."""
return ArduinoLint(["ArduinoLint"]) # Parameter mimics pre-commit argv[0]


@pytest.fixture(scope="function")
def arduino_cli() -> ArduinoCLI:
"""Create an arduino cli object fixture for testing withs."""
"""Create an arduino cli object fixture for testing with."""
return ArduinoCLI(["ArduinoCLI", "--fqbn=arduino:avr:nano"])


Expand Down

0 comments on commit f2f611f

Please sign in to comment.