Skip to content

Commit

Permalink
fix typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
garyzhang99 committed Apr 22, 2024
1 parent 88d0cd0 commit 2d7fe0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/execute_shell_command_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ def setUp(self) -> None:

self.arg1 = "echo 'Helloworld' >> tmp_a.txt"

self.args2 = "cat tmp_a.txt"
self.arg2 = "cat tmp_a.txt"

self.args3 = "rm tmp_a.txt"
self.arg3 = "rm tmp_a.txt"

def test(self) -> None:
"""test command"""
Expand Down

0 comments on commit 2d7fe0b

Please sign in to comment.