Skip to content

Commit 133a86a

Browse files
Add a space after ‘apple’ in the join block (#3467)
* Add a space after ‘apple’ in the join block * Fix integration test
1 parent d1024cd commit 133a86a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/make-toolbox-xml.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ const operators = function () {
589589
<block type="operator_join">
590590
<value name="STRING1">
591591
<shadow type="text">
592-
<field name="TEXT">${apple}</field>
592+
<field name="TEXT">${apple} </field>
593593
</shadow>
594594
</value>
595595
<value name="STRING2">

test/integration/blocks.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('Working with the blocks', () => {
3434
await clickText('Operators', scope.blocksTab);
3535
await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation
3636
await clickText('join', scope.blocksTab); // Click "join <hello> <world>" block
37-
await findByText('applebanana', scope.reportedValue); // Tooltip with result
37+
await findByText('apple banana', scope.reportedValue); // Tooltip with result
3838
const logs = await getLogs();
3939
await expect(logs).toEqual([]);
4040
});

0 commit comments

Comments
 (0)