Skip to content

Commit

Permalink
Merge pull request #5 from 1138-4EB/master
Browse files Browse the repository at this point in the history
fix lint
  • Loading branch information
Paebbels committed May 21, 2018
2 parents c097208 + 4bb0f97 commit 8a33745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VUnit/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
lib.add_source_files(join(root, "../vhdl/JSON.pkg.vhdl"))
lib.add_source_files(join(root, "../Examples/Boards_VUnit.vhdl"))

vu.set_generic('tb_cfg_file', '../Data/Boards2.json' )
vu.set_generic('tb_cfg_file', '../Data/Boards2.json')

import json
file = open('../Data/Boards1.json', 'r')
generics = json.loads(file.read())
vu.set_generic("tb_cfg", json.dumps(generics, separators=(',', ':')) )
vu.set_generic("tb_cfg", json.dumps(generics, separators=(',', ':')))

vu.main()

0 comments on commit 8a33745

Please sign in to comment.