Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Miryam-Schwartz committed Dec 12, 2024
1 parent 72703ae commit c812448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/ufm_log_analyzer_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ This logic will show links that:

There is a folder named `unit_tests`, this folder contains some unit tests, to run the tests follow these steps:

1. Make sure you have `pytest` installed. If not, you can install it using `pip`:

1. Inside the project virtual environment, make sure you have `pytest` installed.
If not, you can install it using `pip`:
```bash
pip install pytest
2. Navigate to the root directory of the log analyzer project:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@ def fabric_size_data():

@pytest.fixture
def analyzer(fabric_size_data):
# Return an instance of the test-specific subclass
return TestIBDIAGNETLogAnalyzer(fabric_size_data)

def test_get_fabric_size(analyzer, fabric_size_data):
# Call the method and check the result
result = analyzer.get_fabric_size()
assert result == fabric_size_data, "get_fabric_size should return _log_data_sorted"

0 comments on commit c812448

Please sign in to comment.