Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
214744b
1
Parent(s):
78cdb0e
Fix filename concat in test
Browse files- test/test.py +1 -1
test/test.py
CHANGED
@@ -294,7 +294,7 @@ class TestPipeline(unittest.TestCase):
|
|
294 |
equation_filename = rand_dir / "equation.csv"
|
295 |
with open(equation_filename, "w") as f:
|
296 |
f.write(csv_file_data)
|
297 |
-
with open(equation_filename + ".bkup", "w") as f:
|
298 |
f.write(csv_file_data)
|
299 |
model = load(
|
300 |
equation_filename,
|
|
|
294 |
equation_filename = rand_dir / "equation.csv"
|
295 |
with open(equation_filename, "w") as f:
|
296 |
f.write(csv_file_data)
|
297 |
+
with open(str(equation_filename) + ".bkup", "w") as f:
|
298 |
f.write(csv_file_data)
|
299 |
model = load(
|
300 |
equation_filename,
|