diff --git a/app/screens/post_options/options/pin_channel_option.tsx b/app/screens/post_options/options/pin_channel_option.tsx index add96a169f..8078054215 100644 --- a/app/screens/post_options/options/pin_channel_option.tsx +++ b/app/screens/post_options/options/pin_channel_option.tsx @@ -44,7 +44,7 @@ const PinChannelOption = ({isPostPinned, postId}: PinChannelProps) => { defaultMessage={defaultMessage} iconName='pin-outline' onPress={onPress} - testID={`post.options.${key}.channel.option`} + testID={`post_options.${key}.channel.option`} /> ); }; diff --git a/app/screens/post_options/options/save_option.tsx b/app/screens/post_options/options/save_option.tsx index 21657e2423..9b917ab97d 100644 --- a/app/screens/post_options/options/save_option.tsx +++ b/app/screens/post_options/options/save_option.tsx @@ -34,7 +34,7 @@ const SaveOption = ({isSaved, postId}: CopyTextProps) => { defaultMessage={defaultMessage} iconName='bookmark-outline' onPress={onHandlePress} - testID={`post.options.${defaultMessage.toLocaleLowerCase()}.channel.option`} + testID={`post_options.${defaultMessage.toLocaleLowerCase()}.channel.option`} /> ); };