Skip to content

Commit

Permalink
Update taxcalc/tests/test_parameters.py
Browse files Browse the repository at this point in the history
Co-authored-by: Henry "Hank" Doupe <henrymdoupe@gmail.com>
  • Loading branch information
jdebacker and hdoupe authored May 14, 2021
1 parent c2b201f commit ec44fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taxcalc/tests/test_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def test_json_file_contents(tests_path, fname):
elif fname == "growdiff.json":
o = GrowDiff()
param_list = []
for k, v in o.__dict__.items():
for k in o:
if k[0].isupper(): # find parameters by case of first letter
param_list.append(k)
for param in param_list:
Expand Down

0 comments on commit ec44fe7

Please sign in to comment.