Skip to content

Commit

Permalink
Merge branch 'winfix2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Oct 17, 2023
2 parents 8fb1bb6 + 7364996 commit de6082a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/integ/dataset_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,12 @@ def testResizableDataset(self):
self.assertEqual(rsp.status_code, 201)
rspJson = json.loads(rsp.text)

# reduce the size to 5 elements
# payload = {"shape": 5}
# rsp = self.session.put(req, data=json.dumps(payload), headers=headers)
# self.assertEqual(rsp.status_code, 201)
# rspJson = json.loads(rsp.text)

# verify updated-shape using the GET shape request
rsp = self.session.get(req, headers=headers)
self.assertEqual(rsp.status_code, 200)
Expand Down

0 comments on commit de6082a

Please sign in to comment.