Commit 7d7a8dfe authored by Ramon Nou's avatar Ramon Nou
Browse files

removing close

parent 014108f9
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -18,11 +18,6 @@ def test_inline_append(gkfs_daemon, gkfs_client):
    ret = gkfs_client.write(file, buf1, len(buf1))
    assert ret.retval == len(buf1)
    
    # Close and reopen for append
    gkfs_client.close(file) # Assuming close exists, or just open new fd
    # Actually gkfs_client.open returns an fd but the harness wrapper might abstract it.
    # Looking at test_write_operations.py, it just calls open again.
    
    ret = gkfs_client.open(file,
                           os.O_WRONLY | os.O_APPEND,
                           stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)