Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scenario Values & Reading from Response #178

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
remove extra test logs
  • Loading branch information
jcdietrich committed Nov 6, 2024
commit 4e53fc10efc79d8e38ceeeb38b3e7c6f43ae9bdc
2 changes: 0 additions & 2 deletions pkg/vars/response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,11 @@ func TestResponseFiller(t *testing.T) {
var filler = getLoadedResponseFiller()

for _, tt := range testVars {
log.Errorf("testing: %v", tt)
holders := []string{
tt.key,
}

vars := filler.Fill(holders)
log.Errorf("vars: %v", vars)

if len(vars) == 0 {
if tt.expectToFind {
Expand Down
4 changes: 0 additions & 4 deletions pkg/vars/scenario_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,18 @@ func getLoadedScenarioFiller() ScenarioFiller {
Store: store,
}

log.Errorf("filler: %v", filler)
log.Errorf("store: %v", store)
return filler
}

func TestScenarioFiller(t *testing.T) {
var filler = getLoadedScenarioFiller()

for _, tt := range scenarioTestVars {
log.Errorf("testing: %v", tt)
holders := []string{
tt.key,
}

vars := filler.Fill(holders)
log.Errorf("vars: %v", vars)

if len(vars) == 0 {
if tt.expectToFind {
Expand Down