python-networkx/test-rounding-fix.patch
Pádraig Brady 0b52a2805e avoid test failure seen on rawhide
File
"/builddir/build/BUILD/networkx-1.8.1/site-packages/networkx/algorithms/assortativity/correlation.py",
line 118, in

Failed example:
    r
Expected:
    -0.5
Got:
    -0.50000000000000011
2014-03-17 11:14:17 +00:00

15 lines
566 B
Diff

This was seen intermittently
diff -Naur networkx-1.8.1.orig/networkx/algorithms/assortativity/correlation.py networkx-1.8.1/networkx/algorithms/assortativity/correlation.py
--- networkx-1.8.1.orig/networkx/algorithms/assortativity/correlation.py 2013-08-04 13:53:31.000000000 +0000
+++ networkx-1.8.1/networkx/algorithms/assortativity/correlation.py 2014-03-17 11:11:25.710772149 +0000
@@ -115,7 +115,7 @@
--------
>>> G=nx.path_graph(4)
>>> r=nx.degree_pearson_correlation_coefficient(G)
- >>> r
+ >>> print("%.1f"%r)
-0.5
Notes