aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schaefermeyer <mschae@users.noreply.github.com>2016-09-01 22:36:37 +0200
committerGitHub <noreply@github.com>2016-09-01 22:36:37 +0200
commit27c7b9be5269e204418772c341a6b416005a3355 (patch)
tree52dc2c5c97da30ea75c0b560c42eab48e626a910
parentcbdc163781ae9a711a7d7328966bb7bd985d73fe (diff)
parent7b52181d85d5030754816b21386048d8babc1930 (diff)
downloadboltex-27c7b9be5269e204418772c341a6b416005a3355.tar.gz
boltex-27c7b9be5269e204418772c341a6b416005a3355.tar.xz
Merge pull request #7 from andreasronge/fix-unit-test-pack-stream-int-16
Bug fix of unit test for PackStream INT16
-rw-r--r--test/boltex/pack_stream_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/boltex/pack_stream_test.exs b/test/boltex/pack_stream_test.exs
index 1689aa5..86476ef 100644
--- a/test/boltex/pack_stream_test.exs
+++ b/test/boltex/pack_stream_test.exs
@@ -26,7 +26,7 @@ defmodule Boltex.PackStreamTest do
assert PackStream.encode(0) == << 0x00 >>
assert PackStream.encode(42) == << 0x2A >>
assert PackStream.encode(-42) == << 0xC8, 0xD6 >>
- assert PackStream.encode(420) == << 0xC9, 0xA4 >>
+ assert PackStream.encode(420) == << 0xC9, 0x01, 0xA4 >>
end
test "encodes string" do