Skip to content

Commit

Permalink
Troubleshoot unit test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Aug 14, 2023
1 parent 8284d0a commit abd2f25
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,9 @@ def test_export_user_config(self):
"skill-test.neon", "skill.json")),
repr(os.listdir(extract_path)))
self.assertTrue(isfile(join(extract_path, "neon.yaml")))
with open(join(extract_path, "neon.yaml")) as f:
contents = f.read()
self.assertEqual(contents, "test: true\n")

# Validate export file exists
with self.assertRaises(FileExistsError):
Expand Down

0 comments on commit abd2f25

Please sign in to comment.