Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/tools.py

    reb67b47 r8e516fd  
    238238# helper function to check if a files contains only a specific string
    239239def file_contains_only(file, text) :
    240         with open(file, encoding="latin-1") as f: # use latin-1 so all chars mean something.
     240        with open(file) as f:
    241241                ff = f.read().strip()
    242242                result = ff == text.strip()
Note: See TracChangeset for help on using the changeset viewer.