From c42f86eb15a2bc1acca6ab5cd5dcc75ebc2bbb86 Mon Sep 17 00:00:00 2001 From: Justin Ibarra Date: Mon, 15 Nov 2021 10:02:31 -0900 Subject: [PATCH] Test to trigger workflows (#1612) (cherry picked from commit 59ba8e15405d6cb7757774696f58d9f9ca64553f) --- tests/test_toml_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_toml_formatter.py b/tests/test_toml_formatter.py index ef97ef6e6..4787354fa 100644 --- a/tests/test_toml_formatter.py +++ b/tests/test_toml_formatter.py @@ -18,7 +18,7 @@ tmp_file = 'tmp_file.toml' class TestRuleTomlFormatter(unittest.TestCase): """Test that the custom toml formatting is not compromising the integrity of the data.""" - with open(get_etc_path('test_toml.json'), 'r') as f: + with open(get_etc_path("test_toml.json"), "r") as f: test_data = json.load(f) def compare_formatted(self, data, callback=None, kwargs=None):