Skip to content

Commit

Permalink
Improve Audit result table views
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Aug 24, 2023
1 parent 030d335 commit 5a5ab46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ var (
)

func init() {
JfrogUrl = flag.String("jfrog.url", "https://ecosysjfrog.jfrog.io/", "JFrog platform url")
JfrogUser = flag.String("jfrog.user", "michaelsv", "JFrog platform username")
JfrogPassword = flag.String("jfrog.password", "Ms123456!", "JFrog platform password")
JfrogUrl = flag.String("jfrog.url", "http://localhost:8081/", "JFrog platform url")
JfrogUser = flag.String("jfrog.user", "admin", "JFrog platform username")
JfrogPassword = flag.String("jfrog.password", "password", "JFrog platform password")
JfrogSshKeyPath = flag.String("jfrog.sshKeyPath", "", "Ssh key file path")
JfrogSshPassphrase = flag.String("jfrog.sshPassphrase", "", "Ssh key passphrase")
JfrogAccessToken = flag.String("jfrog.adminToken", tests.GetLocalArtifactoryTokenIfNeeded(*JfrogUrl), "JFrog platform admin token")
Expand All @@ -103,7 +103,7 @@ func init() {
TestPipenv = flag.Bool("test.pipenv", false, "Test Pipenv")
TestPoetry = flag.Bool("test.poetry", false, "Test Poetry")
TestPlugins = flag.Bool("test.plugins", false, "Test Plugins")
TestXray = flag.Bool("test.xray", true, "Test Xray")
TestXray = flag.Bool("test.xray", false, "Test Xray")
TestAccess = flag.Bool("test.access", false, "Test Access")
TestTransfer = flag.Bool("test.transfer", false, "Test files transfer")
TestLifecycle = flag.Bool("test.lc", false, "Test lifecycle")
Expand Down

0 comments on commit 5a5ab46

Please sign in to comment.