Skip to content

Commit 1d039bf

Browse files
committed
test: Fix wrong type in RealmContentNetworkImageChecks
This was accidentally clobbered in the merge of zulip#247; see zulip#247 (comment)
1 parent 135cec1 commit 1d039bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/widgets/content_checks.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import 'package:checks/checks.dart';
22
import 'package:zulip/widgets/content.dart';
33

44
extension RealmContentNetworkImageChecks on Subject<RealmContentNetworkImage> {
5-
Subject<String> get src => has((i) => i.src, 'src');
5+
Subject<Uri> get src => has((i) => i.src, 'src');
66
// TODO others
77
}

0 commit comments

Comments
 (0)