We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465d228 commit c108362Copy full SHA for c108362
pvlib/test/test_bifacial.py
@@ -1,4 +1,5 @@
1
import pandas as pd
2
+import numpy as np
3
from datetime import datetime
4
from pvlib.bifacial import pvfactors_timeseries, PVFactorsReportBuilder
5
from conftest import requires_pvfactors
@@ -115,7 +116,7 @@ def test_build_1():
115
116
"""
117
report = None
118
pvarray = None
- expected = {'total_inc_back': [], 'total_inc_front': []}
119
+ expected = {'total_inc_back': [np.nan], 'total_inc_front': [np.nan]}
120
assert expected == PVFactorsReportBuilder.build(report, pvarray)
121
122
0 commit comments