@@ -77,7 +77,7 @@ def test_config_to_dict(self):
7777 self .tmuxp_dict
7878 )
7979
80- config .check_consistency (
80+ config .validate_schema (
8181 config .import_teamocil (
8282 self .teamocil_dict
8383 )
@@ -86,7 +86,7 @@ def test_config_to_dict(self):
8686 def test_config_to_yaml (self ):
8787 '''teamocil yaml to tmuxp yaml config
8888
89- use check_consistency to assert against
89+ use validate_schema to assert against
9090 '''
9191 pass
9292
@@ -154,7 +154,7 @@ def test_config_to_dict(self):
154154 self .tmuxp_dict
155155 )
156156
157- config .check_consistency (
157+ config .validate_schema (
158158 config .import_teamocil (
159159 self .teamocil_dict
160160 )
@@ -241,7 +241,7 @@ def test_config_to_dict(self):
241241 self .tmuxp_dict
242242 )
243243
244- config .check_consistency (
244+ config .validate_schema (
245245 config .import_teamocil (
246246 self .teamocil_dict
247247 )
@@ -294,7 +294,7 @@ def test_config_to_dict(self):
294294 self .tmuxp_dict
295295 )
296296
297- config .check_consistency (
297+ config .validate_schema (
298298 config .import_teamocil (
299299 self .teamocil_dict
300300 )
@@ -669,7 +669,7 @@ def test_config_to_dict(self):
669669 self .two_windows
670670 )
671671
672- config .check_consistency (
672+ config .validate_schema (
673673 config .import_teamocil (
674674 self .teamocil_dict ['two-windows' ]
675675 )
@@ -682,7 +682,7 @@ def test_config_to_dict(self):
682682 self .two_windows_with_filters
683683 )
684684
685- config .check_consistency (
685+ config .validate_schema (
686686 config .import_teamocil (
687687 self .teamocil_dict ['two-windows-with-filters' ]
688688 )
@@ -695,7 +695,7 @@ def test_config_to_dict(self):
695695 self .two_windows_with_custom_command_options
696696 )
697697
698- config .check_consistency (
698+ config .validate_schema (
699699 config .import_teamocil (
700700 self .teamocil_dict ['two-windows-with-custom-command-options' ]
701701 )
@@ -707,7 +707,7 @@ def test_config_to_dict(self):
707707 ),
708708 self .three_windows_within_a_session
709709 )
710- config .check_consistency (
710+ config .validate_schema (
711711 config .import_teamocil (
712712 self .teamocil_dict ['three-windows-within-a-session' ]
713713 )
0 commit comments