check_grid.py: update to match new CLI: 'put - TARGET' instead of 'put TARGET'

This commit is contained in:
Brian Warner 2008-08-01 19:48:56 -07:00
parent b9f4006b96
commit 4fb03c2510

View File

@ -183,10 +183,10 @@ class GridTester:
self.put_mutable("recentlog", "Recent Mutable Log Header\n\n")
def put(self, fn, data):
self.cli("put", "testgrid:"+fn, stdin=data, ignore_stderr=True)
self.cli("put", "-", "testgrid:"+fn, stdin=data, ignore_stderr=True)
def put_mutable(self, fn, data):
self.cli("put", "--mutable", "testgrid:"+fn,
self.cli("put", "--mutable", "-", "testgrid:"+fn,
stdin=data, ignore_stderr=True)
def update(self, fn):