Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit eedb748

Browse files
Update test_calculator.py
1 parent d739cd2 commit eedb748

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_calculator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_profile_bad(monkeypatch):
1919

2020
def test_profile():
2121
profile = RaspaProfile()
22-
assert profile.binary == f"{os.getenv('RASPA_DIR')}/bin/simulate"
22+
assert profile.command == f"{os.getenv('RASPA_DIR')}/bin/simulate"
2323

2424
assert profile.get_calculator_command() == [
2525
f"{os.getenv('RASPA_DIR')}/bin/simulate",
@@ -31,8 +31,8 @@ def test_profile():
3131

3232

3333
def test_profil2e():
34-
profile = RaspaProfile(binary="my/path")
35-
assert profile.binary == "my/path"
34+
profile = RaspaProfile(command="my/path")
35+
assert profile.command == "my/path"
3636

3737
assert profile.get_calculator_command() == [
3838
"my/path",

0 commit comments

Comments
 (0)