mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
chg: compare with low case
This commit is contained in:
parent
a499e30608
commit
229452719a
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ local function test(modulation)
|
||||||
for _ = 1, #data_blocks_cmds do
|
for _ = 1, #data_blocks_cmds do
|
||||||
local val = data_blocks_cmds[_]
|
local val = data_blocks_cmds[_]
|
||||||
local blockdata, msg = CheckReadBlock(_)
|
local blockdata, msg = CheckReadBlock(_)
|
||||||
if blockdata ~= val then
|
if blockdata:lower() ~= val:lower() then
|
||||||
print( ('Test %s == %s Failed'):format(val, blockdata))
|
print( ('Test %s == %s Failed'):format(val, blockdata))
|
||||||
core.console( format('rem -- block %d value %s failed', _, val))
|
core.console( format('rem -- block %d value %s failed', _, val))
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue