File tree Expand file tree Collapse file tree
crates/tj-core/src/classifier Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -150,7 +150,10 @@ mod tests {
150150 // Real `claude` is a native binary, so production is unaffected; this
151151 // is purely a test-fake limitation. Skip the affected tests on Windows.
152152 #[ test]
153- #[ cfg_attr( windows, ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)" ) ]
153+ #[ cfg_attr(
154+ windows,
155+ ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)"
156+ ) ]
154157 fn classifier_parses_cli_envelope_and_returns_classified_output ( ) {
155158 let dir = tempfile:: TempDir :: new ( ) . unwrap ( ) ;
156159
@@ -183,7 +186,10 @@ mod tests {
183186 }
184187
185188 #[ test]
186- #[ cfg_attr( windows, ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)" ) ]
189+ #[ cfg_attr(
190+ windows,
191+ ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)"
192+ ) ]
187193 fn classifier_surfaces_not_logged_in_with_friendly_hint ( ) {
188194 let dir = tempfile:: TempDir :: new ( ) . unwrap ( ) ;
189195 let envelope = serde_json:: json!( {
@@ -216,7 +222,10 @@ mod tests {
216222 }
217223
218224 #[ test]
219- #[ cfg_attr( windows, ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)" ) ]
225+ #[ cfg_attr(
226+ windows,
227+ ignore = "fake-claude.cmd cannot accept argv with quotes (BatBadBut)"
228+ ) ]
220229 fn classifier_command_with_spaces_runs_wrapper_then_target ( ) {
221230 // Simulates `aimux run dt claude` style wrappers: a launcher
222231 // script that ignores its first argv, then forwards everything
You can’t perform that action at this time.
0 commit comments