diff --git a/moto/utilities/utils.py b/moto/utilities/utils.py index 58e493ba4..01d20e47e 100644 --- a/moto/utilities/utils.py +++ b/moto/utilities/utils.py @@ -19,4 +19,4 @@ def load_resource(filename): load_resource(resource_filename(__name__, "resources/file.json")) """ with open(filename, "r") as f: - return json.load(f) + return json.load(f, encoding="utf-8")