Skip to content

Commit 5de5cd1

Browse files
committed
Fixed stupid flake8 errors.
1 parent 9704d86 commit 5de5cd1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Berksfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"locked_version": "2.0.0"
55
},
66
"sudo": {
7-
"locked_version": "2.1.2"
7+
"locked_version": "2.1.4"
88
},
99
"deis": {
1010
"locked_version": "0.0.7",
1111
"git": "https://github.com/opdemand/deis-cookbook.git",
12-
"ref": "2068daa476a478f6b1de95d977ac121060975fa9"
12+
"ref": "f142460ab8b6ed01ce2fcfc96d3ac5fe90fcd109"
1313
},
1414
"rsyslog": {
1515
"locked_version": "1.6.0"

api/tests/container.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_container_scale_allocation(self):
140140
self.assertEqual(response.status_code, 200)
141141
# test that the node has all 13 containers
142142
self.assertEqual(get_allocations(response.data['containers']['web']),
143-
[13,])
143+
[13])
144144
# With 2 nodes
145145
url = "/api/formations/{formation_id}/scale/layers".format(**locals())
146146
body = {'runtime': 2}
@@ -178,7 +178,7 @@ def test_container_scale_allocation(self):
178178
self.assertEqual(response.status_code, 200)
179179
# test that it gets all 8 containers
180180
self.assertEqual(get_allocations(response.data['containers']['web']),
181-
[8,])
181+
[8])
182182

183183
def test_container_balance(self):
184184
url = '/api/formations'

0 commit comments

Comments
 (0)