fixed semantic version tests

This commit is contained in:
debris 2015-12-21 01:57:34 +01:00
parent 7ed49bea4d
commit be2b041ee4

View File

@ -2,8 +2,9 @@
/// ///
/// # Example /// # Example
/// ``` /// ```
/// extern crate ethcore; /// extern crate ethcore_util as util;
/// use ethcore::engine::*; /// use util::semantic_version::*;
///
/// fn main() { /// fn main() {
/// assert_eq!(SemanticVersion::new(1, 2, 3).as_u32(), 0x010203); /// assert_eq!(SemanticVersion::new(1, 2, 3).as_u32(), 0x010203);
/// } /// }