Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failling test: TestExtraction.testRandom3() #12

Closed
end2endzone opened this issue Dec 11, 2017 · 1 comment
Closed

Fix failling test: TestExtraction.testRandom3() #12

end2endzone opened this issue Dec 11, 2017 · 1 comment
Labels
Milestone

Comments

@end2endzone
Copy link
Owner

No description provided.

@end2endzone
Copy link
Owner Author

The issue is related to encoding a file which contains the following: 0x00 0x33 which gets incorrectly encoded as

  • \03 (NULL character then printable 3).

However, the correct encoding should be one of the following:

  • \0003 (octal, printable 3)
  • \0\x33 (NULL, HEX)
  • \0\or \0\063

end2endzone added a commit that referenced this issue Dec 12, 2017
…ion.testRandom8()

Created new unit test for issue #12
@end2endzone end2endzone added this to the 1.4 milestone Dec 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant