From 27a6a34f0ac4faab7884c01c77dee7eb659c4319 Mon Sep 17 00:00:00 2001 From: Bearmine Date: Sun, 30 Nov 2025 11:50:51 -0600 Subject: [PATCH] Fix dummy test --- test/adventofcode2025_test.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); }); }