Skip to content

Commit 75df32b

Browse files
committed
Use single quoted strings out of the spec strings
1 parent 4ffd166 commit 75df32b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/lib/rex/exploitation/encryptjs_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
describe Rex::Exploitation::EncryptJS do
77

88
let(:code) { "var test = 'metasploit';" }
9-
let(:key) { "secret" }
10-
let(:signature) { "metasploit" }
11-
let(:loader_signature) { "location.search.substring(1);" }
9+
let(:key) { 'secret' }
10+
let(:signature) { 'metasploit' }
11+
let(:loader_signature) { 'location.search.substring(1);' }
1212
let(:loader_key_words) { ['exploit', 'encoded', 'pass', 'decoded'] }
1313

1414
describe "Rex::Exploitation::EncryptJS.encrypt" do

0 commit comments

Comments
 (0)