8000 doc: Fix wrong test name by gmuloc · Pull Request #464 · aristanetworks/anta · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

doc: Fix wrong test name #464

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/usage-inventory-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,14 @@ To run test to verify the EOS software version, you can do:

```yaml
anta.tests.software:
- VerifyEosVersion:
- VerifyEOSVersion:
```

It will load the test `VerifyEosVersion` located in `anta.tests.software`. But since this test has mandatory inputs, we need to provide them as a dictionary in the YAML file:
It will load the test `VerifyEOSVersion` located in `anta.tests.software`. But since this test has mandatory inputs, we need to provide them as a dictionary in the YAML file:

```yaml
anta.tests.software:
- VerifyEosVersion:
- VerifyEOSVersion:
# List of allowed EOS versions.
versions:
- 4.25.4M
Expand All @@ -183,7 +183,7 @@ The following example is a very minimal test catalog:
# Load anta.tests.software
anta.tests.software:
# Verifies the device is running one of the allowed EOS version.
- VerifyEosVersion:
- VerifyEOSVersion:
# List of allowed EOS versions.
versions:
- 4.25.4M
Expand Down
0