Skip to content

Commit

Permalink
Output is now 3.6 not 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Sep 18, 2017
1 parent 36c642b commit 10c88d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/unit/n8l/python_check_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# XXX can't figure out how to mock `read` and have it set env vars
expect(status.exitstatus).to_not be 0
expect(out).to match(/Unable to locate python./m)
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.5\)/m)
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.6\)/m)
expect(err).to eq('')

expect(has_cmd).to be_called_with_arguments('python').times(1)
Expand All @@ -35,7 +35,7 @@
)

expect(status.exitstatus).to_not be 0
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.5\)/m)
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.6\)/m)
expect(err).to eq('')

expect(out).to_not match(/Unable to locate python./m)
Expand All @@ -55,7 +55,7 @@
)

expect(status.exitstatus).to_not be 0
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.5\)/m)
expect(out).to match(/Python 2 \(>=2.7\) or 3 \(>=3.6\)/m)
expect(out).to match(/LSST stack requires Python./m)
expect(err).to eq('')

Expand Down

0 comments on commit 10c88d3

Please sign in to comment.