summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qamper.py
diff options
context:
space:
mode:
authorHector Fernandez <hector@iatec.biz>2020-07-06 17:22:17 +0200
committerHector Fernandez <hector@iatec.biz>2020-07-06 17:22:17 +0200
commit1d51a80b57cc8c80c78d67c85290503997060e9e (patch)
treeb39712b4f90369280e75adfee3ef81a128dfe3e8 /test-cli/test/tests/qamper.py
parentcd3c8dd78e3bcdd442967583e3814db3701871c0 (diff)
downloadboard-1d51a80b57cc8c80c78d67c85290503997060e9e.zip
board-1d51a80b57cc8c80c78d67c85290503997060e9e.tar.gz
board-1d51a80b57cc8c80c78d67c85290503997060e9e.tar.bz2
Modified paths of ram and nfs temporary folders.
Diffstat (limited to 'test-cli/test/tests/qamper.py')
-rw-r--r--test-cli/test/tests/qamper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-cli/test/tests/qamper.py b/test-cli/test/tests/qamper.py
index b4d57e3..58054c9 100644
--- a/test-cli/test/tests/qamper.py
+++ b/test-cli/test/tests/qamper.py
@@ -35,13 +35,13 @@ class Qamper(unittest.TestCase):
# get current value (in Amperes)
self.current = amp.getCurrent()
# save result in a file
- with open('/tmp/station/amper.txt', 'w') as outfile:
+ with open('/mnt/station_ramdisk/amper.txt', 'w') as outfile:
n = outfile.write("Current: {} A".format(self.current))
outfile.close()
self.__resultlist.append(
{
"description": "Amperimeter values",
- "filepath": "/tmp/station/amper.txt",
+ "filepath": "/mnt/station_ramdisk/amper.txt",
"mimetype": "text/plain"
}
)