Fix linting error in CopyButton test

This commit is contained in:
mabashian 2021-02-15 11:33:38 -05:00
parent a691caf346
commit f6bddfd336

View File

@ -18,7 +18,7 @@ describe('<CopyButton/>', () => {
onCopyStart={() => {}}
onCopyFinish={() => {}}
copyItem={() => {}}
errorMessage={`Failed to copy template.`}
errorMessage="Failed to copy template."
/>
);
});
@ -32,7 +32,7 @@ describe('<CopyButton/>', () => {
onCopyStart={() => {}}
onCopyFinish={() => {}}
copyItem={copyItem}
errorMessage={`Failed to copy template.`}
errorMessage="Failed to copy template."
/>
);
});