Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo Prete committed Jun 15, 2024
1 parent 234e778 commit 36fd026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/spontini_server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,10 @@ def createCompileAndRemoveDummyLyFile():

##########################

f = open("snippet-to-format.ly", "r")
f = open(os.path.join(os.path.dirname(__file__), "snippet-to-format.ly"), "r")
snippetToFormat = f.read()
f.close()
f = open("snippet-expected-format.ly", "r")
f = open(os.path.join(os.path.dirname(__file__), "snippet-expected-format.ly"), "r")
snippetExpectedFormat = f.read()
f.close()
logTaskLabel("FORMAT")
Expand Down

0 comments on commit 36fd026

Please sign in to comment.