format log_ring_test.dart helper to one line
The committed version of the _rec() helper violated dart format (it was split across two lines under the repo's wide line length). Bring it into compliance so make format / make test stay green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -6,8 +6,7 @@ import 'package:clide/kernel/src/log.dart';
|
||||
import 'package:clide/kernel/src/log_ring.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
LogRecord _rec(LogLevel level, String source, String message) =>
|
||||
LogRecord(level: level, source: source, message: message, timestamp: DateTime.utc(2026, 6, 6));
|
||||
LogRecord _rec(LogLevel level, String source, String message) => LogRecord(level: level, source: source, message: message, timestamp: DateTime.utc(2026, 6, 6));
|
||||
|
||||
void main() {
|
||||
test('retains records in arrival order', () {
|
||||
|
||||
Reference in New Issue
Block a user