Skip to content

Commit

Permalink
fix ruby tests (#7274)
Browse files Browse the repository at this point in the history
  • Loading branch information
mndeveci authored Jul 23, 2024
1 parent 83c2596 commit 5712c7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require 'statistics'
require 'ruby-statistics/distribution/normal'
require 'json'
require 'layer'

def lambda_handler(event:, context:)
# Sample pure Lambda function that returns a message and a location

normal = Statistics::Distribution::Normal.new(2,3)
normal = RubyStatistics::Distribution::Normal.new(2,3)

{
statusCode: 200,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require 'statistics'
require 'ruby-statistics/distribution/normal'
require 'json'
require 'layer'

def lambda_handler(event:, context:)
# Sample pure Lambda function that returns a message and a location

normal = Statistics::Distribution::Normal.new(2,3)
normal = RubyStatistics::Distribution::Normal.new(2,3)

{
statusCode: 200,
Expand Down

0 comments on commit 5712c7f

Please sign in to comment.