Fix dummy test

This commit is contained in:
2025-11-30 11:50:51 -06:00
parent 15c17c4a02
commit 27a6a34f0a

View File

@@ -1,8 +1,7 @@
import 'package:adventofcode2025/adventofcode2025.dart';
import 'package:test/test.dart'; import 'package:test/test.dart';
void main() { void main() {
test('calculate', () { test('42', () {
expect(calculate(), 42); expect(42, 42);
}); });
} }