summaryrefslogtreecommitdiff
path: root/spec/functions/strftime_spec.rb
diff options
context:
space:
mode:
authorHailee Kenney <hailee@puppet.com>2017-08-09 14:53:13 -0700
committerGitHub <noreply@github.com>2017-08-09 14:53:13 -0700
commitfaadebfb858f59b289ca065674ad024b5e1fdfc5 (patch)
treefcd65cbecef5a643e133b7e22c118f278f5f3518 /spec/functions/strftime_spec.rb
parente8da44042213e07cdc6f0add7c94bccfbd1dd1f5 (diff)
parenta8302160fb60cd9729dc4de48fd33194bb69fc8b (diff)
Merge pull request #802 from eputnam/release_prep
(MODULES-5436) release prep for 4.17.2
Diffstat (limited to 'spec/functions/strftime_spec.rb')
-rwxr-xr-xspec/functions/strftime_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/functions/strftime_spec.rb b/spec/functions/strftime_spec.rb
index e76774a..51f8a73 100755
--- a/spec/functions/strftime_spec.rb
+++ b/spec/functions/strftime_spec.rb
@@ -14,9 +14,9 @@ describe 'strftime' do
expect(result.to_i).to(be > 1311953157)
end
- it "using %s should be lower then 1.5 trillion" do
+ it "using %s should be lower then 2.0 trillion" do
result = scope.function_strftime(["%s"])
- expect(result.to_i).to(be < 1500000000)
+ expect(result.to_i).to(be < 2000000000)
end
it "should return a date when given %Y-%m-%d" do