Skip to content

Commit

Permalink
tests: correct validation test-version entry
Browse files Browse the repository at this point in the history
Corrects the used variable when populating a test version with the
source link configuration.

Signed-off-by: James Knight <james.d.knight@live.com>
  • Loading branch information
jdknight committed Apr 7, 2024
1 parent 8b38e6a commit f66ebda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def setUpClass(cls):
cls.config['manpages_url'] = 'https://example.org/{path}'
cls.test_desc = os.getenv(TESTDESC_ENV_KEY, DEFAULT_TEST_DESC)
cls.test_key = os.getenv(TESTKEY_ENV_KEY, DEFAULT_TEST_KEY)
cls.test_version = os.getenv(TESTKEY_ENV_KEY, DEFAULT_TEST_VERSION)
cls.test_version = os.getenv(TESTKEY_ENV_VERSION, DEFAULT_TEST_VERSION)

# overrides from user
try:
Expand Down

0 comments on commit f66ebda

Please sign in to comment.