fix: fixed pin tests

This commit is contained in:
Deven Joshi
2021-06-07 13:04:38 +05:30
parent 9f60af5e16
commit 96f65ae619
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1353,7 +1353,7 @@ class StreamChatClient {
Future<UpdateMessageResponse> partiallyUpdateMessage(
String id, Map data) async {
final response = await put(
'/messages/${id}',
'/messages/$id',
data: data,
);
return decode(response.data, UpdateMessageResponse.fromJson);