Wycer
Wycer
这应该是官方修改了API。 现在stable分支下也出现这个问题了(版本flutter 1.7.8+hotfix.2)。
似乎这样改就可以了: `_imageStream.addListener(_handleImageChanged);` 替换为 `_imageStream.addListener(ImageStreamListener(_handleImageChanged));` 但是项目中使用的palette_generator还存在着无法通过升级解决的问题
应该不行,我是直接在pubspec.yaml里把它改到了^0.1.1(这个包在pub上的最新版本)然后pub get了 然后我直接进这个包的源码把那个api修了,现在已经能跑了。 但是这种解决方式非常强行,建议找同类包替换一下。
I have also been confused for a long time and finally I found that in your case the mocking should be ``` go Mock.On("Stats", mock.AnythingOfType("json.RawMessage"), mock.AnythingOfType("[]string"), mock.AnythingOfType("int64"), mock.AnythingOfType("int64")).Return( func(msg json.RawMessage,...
@matu3ba You are right. After adding more tests, I did find some other bugs around it. BTW, could you tell me why the approval is still awaiting. Did I miss...
@matu3ba I have fixed the mistake in test, could you help me trigger the CI again?
Hello @matu3ba,sorry for the delay,I will handle this promptly.
@matu3ba The tests passed in my local env, but I am still afraid that the CI testing may fail (as the previous few times). I guess I need some help...
Same issue here