Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "Chrome",
"osx": {
"command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
},
"args": ["${file}"]
"args": [
"${file}"
],
"tasks": [
{
"label": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"args": [
"${file}"
],
"problemMatcher": [],
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "Chrome",
"osx": {
"command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
},
"args": ["${file}"]
}
Binary file modified testsuites/CBLTester/.DS_Store
Binary file not shown.
Binary file modified testsuites/CBLTester/CBL_Functional_tests/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from libraries.testkit.cluster import Cluster
from keywords.MobileRestClient import MobileRestClient

from testsuites.CBLTester.CBL_Functional_tests.TestSetup_FunctionalTests.test_delta_sync import property_updater
from testsuites.CBLTester.CBL_Functional_tests.TestSetup_FunctionalTests.Part1.test_delta_sync import property_updater
from keywords.constants import RBAC_FULL_ADMIN


Expand Down