Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
Co-authored-by: Adrian Haas <11636405+haasad@users.noreply.github.com>
  • Loading branch information
simu and haasad authored Dec 20, 2024
1 parent 5606ad4 commit e4f6afd
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/syn-teams.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,6 @@ local appKeysRaw =
);


/*
local ks2 = syn_teams.appKeys('foo-bar');
assert std.length(ks2) == 1 && ks2[0] == 'foo_bar' : 'appKeys should transform - to _';
local ks3 = syn_teams.appKeys('foo-bar as bar');
assert std.length(ks3) == 2 && ks3[0] == 'bar' && ks3[1] == 'foo_bar' : 'appKeys parses and transforms x-z as y';
local ks4 = syn_teams.appKeys('foo-bar as bar-qux');
assert std.length(ks4) == 2 && ks4[0] == 'bar_qux' && ks4[1] == 'foo_bar' : 'appKeys parses and transforms x-zl as y-w';
local ks5 = syn_teams.appKeys('foo-bar as bar-qux', raw=true);
assert std.length(ks5) == 2 && ks5[0] == 'bar-qux' && ks5[1] == 'foo-bar' : "appKeys(raw=true) doesn't transform - to _";
};
*/

{
teams: teams,
Expand Down

0 comments on commit e4f6afd

Please sign in to comment.