Skip to content

Commit c9cc8b2

Browse files
committed
fix test
1 parent 0aaa31f commit c9cc8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/messenger.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ test('conversations.getConversationById with valid conversation_id', t => {
134134

135135
test('conversations.getConversationById with invalid conversation_id', t => {
136136
conversations.getConversationById(conversationFixtures.getConversationByIdWithNoResult, (err, responseData) => {
137-
t.is('NOT_FOUND', responseData.err);
137+
t.is('NOT_FOUND', responseData.err.msg);
138138
t.is(null, err);
139139
});
140140
});

0 commit comments

Comments
 (0)