Skip to content

Commit

Permalink
Issue #1776: remove an unused attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed May 18, 2022
1 parent 74259a5 commit dd753a2
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ my @Tests = (
{
Name => 'User No changes',
Config => {
Type => 'User',
},
DeploymentIDBefore => $UserDeploymentID,
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -195,7 +194,6 @@ my @Tests = (
Name => 'User Set DeploymentID to 0',
Config => {
Value => 0,
Type => 'User',
},
DeploymentIDBefore => 0,
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -205,7 +203,6 @@ my @Tests = (
Name => 'User Set DeploymentID to -1',
Config => {
Value => -1,
Type => 'User',
},
DeploymentIDBefore => -1,
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -215,7 +212,6 @@ my @Tests = (
Name => 'User Set DeploymentID to empty',
Config => {
Value => '',
Type => 'User',
},
DeploymentIDBefore => '',
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -225,7 +221,6 @@ my @Tests = (
Name => 'User Remove DeploymentID',
Config => {
Remove => 1,
Type => 'User',
},
DeploymentIDBefore => '',
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -235,7 +230,6 @@ my @Tests = (
Name => 'User Directory does not exists',
Config => {
RemoveDir => 1,
Type => 'User',
},
DeploymentIDBefore => '',
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -245,7 +239,6 @@ my @Tests = (
Name => 'User Set DeploymentID to be greater',
Config => {
Value => $UserDeploymentID + 1,
Type => 'User',
},
DeploymentIDBefore => $UserDeploymentID + 1,
DeploymentIDAfter => $UserDeploymentID,
Expand All @@ -255,7 +248,6 @@ my @Tests = (
Name => 'User Set DeploymentID to be latest from DB',
Config => {
Value => $UserDeploymentID,
Type => 'User',
},
DeploymentIDBefore => $UserDeploymentID,
DeploymentIDAfter => $UserDeploymentID,
Expand Down

0 comments on commit dd753a2

Please sign in to comment.