QEDK / configparser-rs

A simple configuration parsing utility with no dependencies built on Rust.
https://crates.io/crates/configparser
Other
66 stars 21 forks source link

Fix the empty section test #52

Closed belak closed 6 months ago

belak commented 6 months ago

Because these are coming from a HashMap, the order is not guaranteed. The workaround is to put them into a HashSet and compare those so the returned order doesn't matter.

Sorry I missed this in my last PR!