Skip to content

Commit 760d833

Browse files
committed
Fix test for test_config_tmuxinator
1 parent 8a0699b commit 760d833

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tmuxp/testsuite/test_config_tmuxinator.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
TMUXP_DIR = os.path.join(os.path.dirname(__file__), '.tmuxp')
1616

1717

18-
1918
class TmuxinatorTest(unittest.TestCase):
2019

2120
tmuxinator_yaml = """\
@@ -181,6 +180,7 @@ class TmuxinatorDeprecationsTest(unittest.TestCase):
181180
'session_name': 'sample',
182181
'socket_name': 'foo',
183182
'config': '~/.tmux.mac.conf',
183+
'start_directory': '~/test',
184184
'shell_command_before': [
185185
'sudo /etc/rc.d/mysqld start',
186186
'rbenv shell 2.0.0-p247'
@@ -264,8 +264,9 @@ def test_config_to_dict(self):
264264
yaml_to_dict = test_config.get()
265265
self.assertDictEqual(yaml_to_dict, self.tmuxinator_dict)
266266

267-
self.assertDictEqual(config.import_tmuxinator(
268-
self.tmuxinator_dict), self.tmuxp_dict)
267+
self.assertDictEqual(
268+
config.import_tmuxinator(self.tmuxinator_dict), self.tmuxp_dict
269+
)
269270

270271

271272
class TmuxinatoriSampleTest(unittest.TestCase):

0 commit comments

Comments
 (0)