Skip to content

Commit 057cec8

Browse files
committed
Fix system tests
Nextcloud has a list of compromised password, and the one used for system test has been added to this list. So, let's change the password.
1 parent fbd99d0 commit 057cec8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
# echo -ne fred | md5sum
4-
export OC_PASS=570a90bfbf8c7eab5dc5d4e26832d5b1
3+
# echo -ne fred-password | md5sum
4+
export OC_PASS=796ecbcc9e42a074e22b2c9aa03b79c6
55
php occ user:add --password-from-env --display-name="Fred" --group="users" fred

tests/system/tests/webdav_nextcloud.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
host = container.host
2323
port = container.first_mapped_port
2424
user = "fred"
25-
pass = "570a90bfbf8c7eab5dc5d4e26832d5b1"
25+
pass = "796ecbcc9e42a074e22b2c9aa03b79c6"
2626

2727
inst = Instance.create name: "Fred"
2828
auth = { login: user, password: pass, url: "http://#{host}:#{port}/" }

0 commit comments

Comments
 (0)