Skip to content

Commit

Permalink
tests: Update case for variables with special characters
Browse files Browse the repository at this point in the history
Since 8c2e1a6, we determined that simicolons are ndeed
valid values for variables. So we must reflect that in
our tests as well.

Issue #613
  • Loading branch information
tchx84 committed Apr 17, 2024
1 parent 4794045 commit d0adf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/testModels.js
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ describe('Model', function() {

expect(permissionsDefault.shared_network).toBe(true);
expect(permissionsDefault.shared_network).toBe(true);
expect(permissionsDefault.variables).toEqual('');
expect(permissionsDefault.variables).toEqual('TEST=;');

/* force change to verify that there ins't unsupported permissions */
spyOn(permissionsDefault, 'emit');
Expand Down

0 comments on commit d0adf79

Please sign in to comment.