@@ -125,7 +125,7 @@ class SyncFixture(t.NamedTuple):
125
125
test_id = "empty" ,
126
126
sync_args = [],
127
127
expected_exit_code = 0 ,
128
- expected_in_out = ["options: " , "positional arguments:" ],
128
+ expected_in_out = ["{sync " , "positional arguments:" ],
129
129
),
130
130
# Version
131
131
SyncFixture (
@@ -145,13 +145,13 @@ class SyncFixture(t.NamedTuple):
145
145
test_id = "--help" ,
146
146
sync_args = ["--help" ],
147
147
expected_exit_code = 0 ,
148
- expected_in_out = ["options: " , "positional arguments:" ],
148
+ expected_in_out = ["{sync " , "positional arguments:" ],
149
149
),
150
150
SyncFixture (
151
151
test_id = "-h" ,
152
152
sync_args = ["-h" ],
153
153
expected_exit_code = 0 ,
154
- expected_in_out = ["options: " , "positional arguments:" ],
154
+ expected_in_out = ["{sync " , "positional arguments:" ],
155
155
),
156
156
# Sync
157
157
SyncFixture (
@@ -168,14 +168,14 @@ class SyncFixture(t.NamedTuple):
168
168
test_id = "sync---help" ,
169
169
sync_args = ["sync" , "--help" ],
170
170
expected_exit_code = 0 ,
171
- expected_in_out = ["options:" , " repo_terms" , "--exit-on-error" ],
171
+ expected_in_out = ["repo_terms" , "--exit-on-error" ],
172
172
expected_not_in_out = "--version" ,
173
173
),
174
174
SyncFixture (
175
175
test_id = "sync--h" ,
176
176
sync_args = ["sync" , "-h" ],
177
177
expected_exit_code = 0 ,
178
- expected_in_out = ["options:" , " repo_terms" , "--exit-on-error" ],
178
+ expected_in_out = ["repo_terms" , "--exit-on-error" ],
179
179
expected_not_in_out = "--version" ,
180
180
),
181
181
# Sync: Repo terms
0 commit comments