Skip to content

Commit d7252c5

Browse files
authored
Use correct variable
1 parent dfb6c8f commit d7252c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__TESTS__/commands/plugin.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ describe( 'Calling plugin commands to check for errors', () => {
66
});
77

88
afterAll(() => {
9-
shell.exec( 'unset PLUGIN_MACHINE_API_TOKEN' );
9+
exec( 'unset PLUGIN_MACHINE_API_TOKEN' );
1010
});
1111

1212
it( 'runs build command', () => {
13-
shell.exec( 'plugin-machine plugin build' );
13+
exec( 'plugin-machine plugin build' );
1414
});
1515

1616
it( 'runs the zip commands', () => {
17-
shell.exec( 'plugin-machine plugin zip' );
17+
exec( 'plugin-machine plugin zip' );
1818
});
1919

2020

0 commit comments

Comments
 (0)