Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik committed Jan 26, 2016
1 parent cadac34 commit fb03157
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/debitech/mac.rb
@@ -1,4 +1,4 @@
require 'digest/sha1'
require "digest/sha1"

module Debitech
class Mac
Expand Down
4 changes: 2 additions & 2 deletions lib/debitech/server_api.rb
@@ -1,5 +1,5 @@
require 'debitech_soap'
require 'debitech/mac'
require "debitech_soap"
require "debitech/mac"

module Debitech
class ServerApi
Expand Down
4 changes: 2 additions & 2 deletions lib/debitech/web_api.rb
@@ -1,5 +1,5 @@
require 'digest/sha1'
require 'debitech/mac'
require "digest/sha1"
require "debitech/mac"

module Debitech
class WebApi
Expand Down
2 changes: 1 addition & 1 deletion spec/debitech/server_api_spec.rb
@@ -1,4 +1,4 @@
require 'debitech'
require "debitech"

describe Debitech::ServerApi, "charge" do
let(:unique_reference) {
Expand Down
4 changes: 2 additions & 2 deletions spec/debitech/web_api_spec.rb
@@ -1,5 +1,5 @@
require 'ostruct'
require 'debitech'
require "ostruct"
require "debitech"

describe Debitech::WebApi do
let(:secret_key) {
Expand Down

1 comment on commit fb03157

@tskogberg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.