Skip to content

Commit

Permalink
[tools/shoestring]: address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayonb committed Dec 6, 2024
1 parent 6361e80 commit 4d1d270
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/shoestring/tests/internal/test_Preparer.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,9 @@ def _create_private_key(filepath):
'-algorithm', 'ed25519'
])

def _create_ca_private_key(self, directory):
self._create_private_key(Path(directory) / 'ca.key.pem')
@staticmethod
def _create_ca_private_key(directory):
PreparerTest._create_private_key(Path(directory) / 'ca.key.pem')

def _assert_all_files_read_only(self, directory, expected_files):
# check files
Expand Down

0 comments on commit 4d1d270

Please sign in to comment.