Skip to content

Commit 8e35f40

Browse files
Merge branch 'main' into pwfoo
2 parents e516ad1 + 8c8c3bd commit 8e35f40

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

openbolt.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Gem::Specification.new do |spec|
6161
spec.add_dependency "puppetfile-resolver", ">= 0.6.2", "< 1.0"
6262
spec.add_dependency "puppet-resource_api", ">= 1.8.1"
6363
spec.add_dependency "r10k", ">= 3.10", "< 5"
64-
spec.add_dependency "ruby_smb", ">= 1.0", "< 4.0.0"
64+
spec.add_dependency "ruby_smb", "~> 1.0"
6565
spec.add_dependency "terminal-table", "~> 3.0"
6666
spec.add_dependency "winrm", "~> 2.0"
6767
spec.add_dependency "winrm-fs", "~> 1.3"

spec/fixtures/parallel/parallel/plans/error.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
) {
44
$ts = get_targets($targets)
55
parallelize($ts) |$t| {
6-
if $t.port == 20024 {
6+
if $t.port == 20025 {
77
run_task('error::fail', $t)
88
} else {
99
run_task('parallel', $t, 'time' => 0, 'val' => 'a')

spec/integration/container_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
users = result.map do |hash|
3939
hash.dig('value', 'report', 'resource_statuses').keys
4040
end.flatten
41-
expect(users).to eq(["Notify[root\n]", "Notify[root\n]"])
41+
expect(users).to eq(["Notify[root\n]"])
4242
end
4343
end
4444
end

0 commit comments

Comments
 (0)