Skip to content

Commit

Permalink
test/guest: fix newly generated data failing tests
Browse files Browse the repository at this point in the history
Apparently the directory for golden keys expected by the test cases
should be goldenKeys, not goldenkeys. This script would generate test
files that would not actually replace the old files, causing any test
cases that test update auth files to fail, as they were signed with
different keys.

Signed-off-by: Eric Richter <[email protected]>
  • Loading branch information
erichte-ibm committed Oct 3, 2024
1 parent 852447e commit 8e04bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/guest_generate_testdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
ESL_PATH = os.path.join(DATAPATH, "eslfiles")
AUTH_PATH = os.path.join(DATAPATH, "authfiles")
X509_PATH = os.path.join(DATAPATH, "x509certs")
GOLD_PATH = os.path.join(DATAPATH, "goldenkeys")
GOLD_PATH = os.path.join(DATAPATH, "goldenKeys")
PKCS7_PATH = os.path.join(DATAPATH, "pkcs7files")


Expand Down

0 comments on commit 8e04bdc

Please sign in to comment.