]> git.sur5r.net Git - u-boot/blobdiff - test/py/tests/test_hush_if_test.py
test/py: hush_if_test: Use open() in place of file()
[u-boot] / test / py / tests / test_hush_if_test.py
index 1196e0a53ff99a4fec54fb84d80deba078280fb7..bba8d41d9648c9d57f9f99571bffbf844de9d754 100644 (file)
@@ -148,7 +148,7 @@ def test_hush_if_test_host_file_exists(u_boot_console):
     exec_hush_if(u_boot_console, expr, False)
 
     try:
-        with file(test_file, 'wb'):
+        with open(test_file, 'wb'):
             pass
         assert os.path.exists(test_file)