Skip to content

Commit

Permalink
Merge pull request #27 from UMN-CMS/BryanTemp
Browse files Browse the repository at this point in the history
Fix path issue with BERT test
  • Loading branch information
cros0400 authored Oct 21, 2024
2 parents e62357a + 9638e80 commit f97a7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_bert.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BERT(Test):
def __init__(self, conn, board_sn=-1, tester='', module=None, clock=True):
self.info_dict = {'name': "Bit Error Rate Test", 'board_sn': board_sn, 'tester': tester}
self.conn = conn
self.output = Path(__file__).parent / "BERT.csv"
self.output = Path().home() / "BERT.csv"
Test.__init__(self, self.bert, self.info_dict, conn, output=self.output, iskip=5, nbits=1e8, module=module, clock=clock)

def bert(self, **kwargs):
Expand Down

0 comments on commit f97a7bd

Please sign in to comment.