Skip to content

Commit

Permalink
Fixed a str error
Browse files Browse the repository at this point in the history
  • Loading branch information
rabieifk committed Oct 17, 2024
1 parent b67dae3 commit a4607f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdlagent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def test_tb_compile(self):
#
# Intended use: for testbenching DUT after RTL has successfully compiled into Verilog
def test_tb(self):
script = self.tb_script + " " + self.verilog + " " + self.tb
script = self.tb_script + " " + str(self.verilog) + " " + str(self.tb)
res = subprocess.run([script], capture_output=True, shell=True)
res_string = (str(res.stdout))[2:-1].replace("\\n","\n")
print(res_string)
Expand Down

0 comments on commit a4607f9

Please sign in to comment.