Skip to content

Commit

Permalink
Make sure to test Unicode support
Browse files Browse the repository at this point in the history
  • Loading branch information
netheril96 committed Apr 18, 2024
1 parent 77e2e5f commit fcaac69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/simple_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,11 +248,11 @@ def securefs_chpass(


def get_data_dir(fmt: RepoFormat):
return tempfile.mkdtemp(prefix=f"securefs.{fmt}.data_dir", dir="tmp")
return tempfile.mkdtemp(prefix=f"securefs.{fmt}.data🔐", dir="tmp")


def get_mount_point():
result = tempfile.mkdtemp(prefix=f"securefs.mount_point", dir="tmp")
result = tempfile.mkdtemp(prefix=f"securefs.mount🔓", dir="tmp")
os.rmdir(result)
return result

Expand Down

0 comments on commit fcaac69

Please sign in to comment.