mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-04 05:10:40 +00:00
Fix bugged implementation
This commit is contained in:
@@ -1 +1 @@
|
||||
ERROR: Configured rootDir '/rootDir/does/not/exist' is inaccessible, check access rights
|
||||
ERROR: Configured rootDir '/root' is inaccessible, check access rights
|
||||
|
||||
@@ -19,7 +19,10 @@ class RootDirInaccessible(BaseTest):
|
||||
"""
|
||||
fixtureDB = False
|
||||
fixturePool = False
|
||||
configOverride = { "rootDir": "/rootDir/does/not/exist" }
|
||||
|
||||
configOverride = {
|
||||
"rootDir": "/root" # any directory that exists but is not writable
|
||||
}
|
||||
runCmd = "aptly serve -listen=127.0.0.1:8765"
|
||||
|
||||
def run(self):
|
||||
|
||||
Reference in New Issue
Block a user