@@ -, +, @@ permission --- installer/data/mysql/atomicupdate/bug_35616.pl | 0 t/db_dependent/api/v1/tickets.t | 18 +++++++++--------- 2 files changed, 9 insertions(+), 9 deletions(-) mode change 100644 => 100755 installer/data/mysql/atomicupdate/bug_35616.pl --- a/t/db_dependent/api/v1/tickets.t +++ a/t/db_dependent/api/v1/tickets.t @@ -285,8 +285,8 @@ subtest 'update() tests' => sub { # Attempt partial update on a PUT my $ticket_with_missing_field = { - source => 'catalog', - body => "Test ticket details", + source => 'catalog', + body => "Test ticket details", }; $t->put_ok( "//$userid:$password@/api/v1/tickets/$ticket_id" => json => @@ -296,9 +296,9 @@ subtest 'update() tests' => sub { # Full object update on PUT my $ticket_with_updated_field = { - source => 'catalog', - title => "Test ticket update", - body => "Test ticket update details", + source => 'catalog', + title => "Test ticket update", + body => "Test ticket update details", }; $t->put_ok( "//$userid:$password@/api/v1/tickets/$ticket_id" => json => @@ -307,10 +307,10 @@ subtest 'update() tests' => sub { # Authorized attempt to write invalid data my $ticket_with_invalid_field = { - blah => "Ticket Blah", - source => 'catalog', - title => "Test ticket update", - body => "Test ticket update details", + blah => "Ticket Blah", + source => 'catalog', + title => "Test ticket update", + body => "Test ticket update details", }; $t->put_ok( "//$userid:$password@/api/v1/tickets/$ticket_id" => json => --