Skip to content

Commit

Permalink
Updating the mediaflux version so tests will pass (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
carolyncole authored Oct 25, 2024
1 parent 555f88f commit 38f3e2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/mediaflux_script_access.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Because the user has has access to `server.log` we can even look at the log on t
$ cat /usr/local/mediaflux/volatile/logs/filelist.1.log
# output will include something along the lines of
# [281 76649: Network Connection: http [port=8888]],version=4.16.032,filelist,30-Sep-2024
# [281 76649: Network Connection: http [port=8888]],version=4.16.071,filelist,30-Sep-2024
# 20:34:44.081:INFO:[user, id=157] system:scripter_user: File list for /path/to/collection
```

Expand Down
2 changes: 1 addition & 1 deletion spec/controllers/mediaflux_info_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

RSpec.describe MediafluxInfoController, connect_to_mediaflux: true do
let(:user) { FactoryBot.create :user }
let(:docker_response) { "{\"vendor\":\"Arcitecta Pty. Ltd.\",\"version\":\"4.16.032\"}" }
let(:docker_response) { "{\"vendor\":\"Arcitecta Pty. Ltd.\",\"version\":\"4.16.071\"}" }
let(:ansible_response) { "{\"vendor\":\"Arcitecta Pty. Ltd.\",\"version\":\"4.16.047\"}" }
before do
sign_in user
Expand Down
2 changes: 1 addition & 1 deletion spec/models/mediaflux/version_request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
subject(:request) { described_class.new(session_token: session_token) }
let(:session_token) { user.mediaflux_session }
let(:user) { FactoryBot.create(:user) }
let(:docker_response) { "4.16.032" }
let(:docker_response) { "4.16.071" }
let(:ansible_response) { "4.16.047" }

describe "#resolve" do
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/mediaflux_info_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
context "logged in user" do
let(:user) { FactoryBot.create(:user, uid: "pul123") }
let(:mediaflux_url) { Mediaflux::Request.uri.to_s }
let(:docker_response) { "4.16.032" }
let(:docker_response) { "4.16.071" }
let(:ansible_response) { "4.16.047" }

before do
Expand Down
2 changes: 1 addition & 1 deletion spec/system/welcome_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
let(:other_user) { FactoryBot.create(:user, uid: "zz123") }
let(:no_projects_user) { FactoryBot.create(:user, uid: "qw999") }
let(:no_projects_sponsor) { FactoryBot.create(:project_sponsor, uid: "gg717") }
let(:docker_response) { "Mediaflux: 4.16.032" }
let(:docker_response) { "Mediaflux: 4.16.071" }
let(:ansible_response) { "Mediaflux: 4.16.047" }

before do
Expand Down

0 comments on commit 38f3e2c

Please sign in to comment.