From bf1bd42aefe71f9188ae697f12d084accdc64ac7 Mon Sep 17 00:00:00 2001 From: Joseph Baylon Date: Tue, 12 Apr 2022 13:53:38 -0700 Subject: [PATCH] Fix testIDs --- app/screens/post_options/options/pin_channel_option.tsx | 2 +- app/screens/post_options/options/save_option.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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`} /> ); };