Skip to content

Commit 2b34f2f

Browse files
committed
Fix rtoc bug
1 parent 6153588 commit 2b34f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_basis_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def testEvaluateExpand(self):
113113

114114
logger.info(f"coef2.shape: {coef2.shape}")
115115

116-
coef2 = coef2[:, 0]
116+
coef2 = coef2[0]
117117

118118
logger.info("max error: " + str(np.max(np.abs(coef1 - coef2))))
119119
ind = np.argmax(np.abs(coef1 - coef2))

0 commit comments

Comments
 (0)