Skip to content

Commit dd6eda8

Browse files
author
Jarvan Zhang
committed
reformat code
1 parent 95222d3 commit dd6eda8

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

test/foundation/kt/standard/standart_test.dart

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@ import 'package:test/test.dart';
33

44
void main() {
55
group('Standard test', () {
6-
test("also", () {
7-
String? test;
8-
var result = test?.also((p0) => "r");
9-
expect(result, null);
10-
test = "test";
11-
var result2 = test.also((p0) => "r");
12-
expect(result2, "r");
13-
});
14-
156
test("takeIf", () {
167
String test = "takIf";
178

@@ -41,14 +32,6 @@ void main() {
4132
expect(finalIndex, 9);
4233
});
4334

44-
test("let with?Operator Expect null", () {
45-
String? str;
46-
var result = str?.let((self) {
47-
return self.isNotEmpty;
48-
});
49-
expect(result, null);
50-
});
51-
5235
test("let without?Operator Expect 1", () {
5336
String? str;
5437
var result = str.let((self) {

0 commit comments

Comments
 (0)