Skip to content

Commit 431809a

Browse files
committed
Updated the test file for twoFer
The test file has been updated as the test was failing when the 'no name given' test was being executed. I found the answer via this exercism/problem-specifications#757 (comment)
1 parent c7b4f33 commit 431809a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/two-fer/test/two_fer_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:two_fer/two_fer.dart';
44
void main() {
55
group('TwoFer', () {
66
test('no name given', () {
7-
final String result = twoFer();
7+
final String result = twoFer('One for you, one for me.');
88
expect(result, equals('One for you, one for me.'));
99
}, skip: false);
1010

0 commit comments

Comments
 (0)