1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 10:19:30 +02:00

Fix 'line is too long' warning.

This commit is contained in:
Simo Kinnunen 2014-04-15 11:30:39 +09:00
parent f5ac9d2315
commit fe092bc358

View file

@ -8,7 +8,11 @@ module.exports = {
primaryKey: 'serial' primaryKey: 'serial'
, indexes: { , indexes: {
owner: function(device) { owner: function(device) {
return r.branch(device('present'), device('owner')('email'), r.literal()) return r.branch(
device('present')
, device('owner')('email')
, r.literal()
)
} }
, lastHeartbeatAt: null , lastHeartbeatAt: null
} }