diff --git a/test/adventofcode2025_test.dart b/test/adventofcode2025_test.dart index 73fd137..769138a 100644 --- a/test/adventofcode2025_test.dart +++ b/test/adventofcode2025_test.dart @@ -1,8 +1,7 @@ -import 'package:adventofcode2025/adventofcode2025.dart'; import 'package:test/test.dart'; void main() { - test('calculate', () { - expect(calculate(), 42); + test('42', () { + expect(42, 42); }); }