refs/pull/458/head
main
Fixes CI failures introduced by PR #455 (chaos monkey backend test).
The dart analyze --fatal-infos step in CI was failing because test/backend/chaos_monkey_test.dart had:
dart analyze --fatal-infos
test/backend/chaos_monkey_test.dart
avoid_print
print(...)
stdout.writeln(...)
dart:io
avoid_redundant_argument_values
''
_env('CHAOS_SEED', '')
dart format
connectToServer
$ nix develop --command bash -c "fvm dart analyze --fatal-infos" Analyzing 456... No issues found! $ nix develop --command bash -c "fvm dart format --output=none --set-exit-if-changed test/backend/chaos_monkey_test.dart" Formatted 1 file (0 changed) in 0.01 seconds.
Closes #456
🤖 Generated with Claude Code
No dependencies set.
The note is not visible to the blocked user.
Summary
Fixes CI failures introduced by PR #455 (chaos monkey backend test).
The
dart analyze --fatal-infosstep in CI was failing becausetest/backend/chaos_monkey_test.darthad:avoid_print(5 instances): replacedprint(...)withstdout.writeln(...)—dart:iois already importedavoid_redundant_argument_values: removed redundant''from_env('CHAOS_SEED', '')since''is the parameter defaultdart format: applied formatter fixes (trailing commas, line wrapping for longconnectToServercalls)Verification
Closes #456
🤖 Generated with Claude Code