Skip to content

Commit

Permalink
Make some sections more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
adetokunbo committed Jan 9, 2024
1 parent 89c3354 commit 2be4836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/MemInfo/ProcSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ statmShared rss shared = "0 " +| toInteger rss |+ " " +| toInteger shared |+ " 1

genSharedStatm :: Gen (PerProc, Text)
genSharedStatm = do
sharedKb <- genValid `suchThat` (>) 1
rssKb <- genValid `suchThat` (<) sharedKb
sharedKb <- genValid `suchThat` (> 1)
rssKb <- genValid `suchThat` (> sharedKb)
let content = statmShared rssKb sharedKb
pp =
ppZero
Expand Down

0 comments on commit 2be4836

Please sign in to comment.