Changeset 520f4d1 in trunk
- Timestamp:
- 2020-11-25T21:09:53Z (4 years ago)
- Branches:
- master
- Children:
- 152c04e4
- Parents:
- 1689804
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/test/web/test_webish.py ¶
r1689804 r520f4d1 189 189 ) 190 190 191 def _ get_request(self, tempdir):191 def _create_request(self, tempdir): 192 192 """ 193 193 Create and return a new ``TahoeLAFSRequest`` hooked up to a … … 212 212 """ 213 213 tempdir = FilePath(self.mktemp()) 214 request = self._ get_request(tempdir)214 request = self._create_request(tempdir) 215 215 request.gotLength(request_body_size) 216 216 self.assertThat( … … 227 227 tempdir = FilePath(self.mktemp()) 228 228 tempdir.makedirs() 229 request = self._ get_request(tempdir)229 request = self._create_request(tempdir) 230 230 231 231 # So. Bad news. The temporary file for the uploaded content is
Note: See TracChangeset
for help on using the changeset viewer.