rename test variable to reflect parameter meaning
This commit is contained in:
parent
f1695f33db
commit
30ad678dfa
|
@ -247,7 +247,7 @@ module.exports = {
|
|||
sync: {
|
||||
user,
|
||||
url: `realm://localhost:9080/~/${realmName}`,
|
||||
_onDownloadProgress: (transferred, remaining) => {
|
||||
_onDownloadProgress: (transferred, total) => {
|
||||
progressNotificationCalled = true
|
||||
},
|
||||
},
|
||||
|
@ -279,7 +279,7 @@ module.exports = {
|
|||
let progressNotificationCalled = false;
|
||||
let config = {
|
||||
sync: { user, url: `realm://localhost:9080/~/${realmName}`,
|
||||
_onDownloadProgress: (transferred, remaining) => {
|
||||
_onDownloadProgress: (transferred, total) => {
|
||||
progressNotificationCalled = true
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue