We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43e4117 commit 875bc7bCopy full SHA for 875bc7b
tests/test_utilities/test_driver_generator.py
@@ -69,7 +69,9 @@ def test_driver_generated_successfully(self):
69
70
# Assert
71
assertFileExists(self, "nut-shell/src/data_model.py")
72
- self.assertEqual(post_mock.call_args[1]["headers"]["Authorization"], "Basic TEST-TOKEN")
+ self.assertEqual(
73
+ post_mock.call_args[1]["headers"]["Authorization"], "Basic TEST-TOKEN"
74
+ )
75
76
def test_error_displayed_when_driver_generation_returns_error_code(self):
77
self.fs.create_file("nut-shell/dist/NutShell.zip", contents="ZIP")
0 commit comments