Saairam Venkatesh
Saairam Venkatesh
### Describe what this PR does / why we need it - In `sentinel-adapter/sentinel-reactor-adapter`, the unit tests `ProviderFilterTest.testDefaultFallback()`, `ProviderFilterTest.testCustomRequestOriginParser()`, and `ClientFilterTest.testClientFallback()` will fail when run after the unit tests `ProviderFilterTest.testCustomFallback()`...
## Issue Description Type: *bug report* ### Describe what happened - In `com.alibaba.csp.sentinel.adapter.jaxrs.ClientFilterTest`, the unit test `testClientFallback()` will fail when run after the unit test `testClientCustomFallback()`. - Similarly, the following...
- `FieldHelper`使用Java反射`Class.getDeclaredFields()`来获取特定类的字段信息 https://github.com/abel533/Mapper/blob/5e31029b2df157afe9031fe183f6d7795ac2aa19/core/src/main/java/tk/mybatis/mapper/mapperhelper/FieldHelper.java#L183 - 然而,官方的Javadoc提到,随着时间的推移,元素的顺序不会保持 - 修复程序已于2022年10月15日在[此提交](https://github.com/abel533/Mapper/pull/666/commits/70232e7c5edd63bee897873bde25efbb2d076a1a)中被合并,但在[此提交](https://github.com/abel533/Mapper/commit/79d313a7ca6cba6c5d5323746fb83ed5744180a1)中删除 - 我怀疑这是因为2022年10月16日测试“ComplexEntityTest.test()”中的[此更改](https://github.com/abel533/Mapper/commit/2fcefe65e77db1e57edb33290cd0e347ecaec8),该测试会因订购问题而失败。 - 由于字段已经排序,这个测试的预期值应该从 ``` Assert.assertEquals("SELECT id,user_name,address,state FROM user " + "" + " AND id = #{id}" + " AND user_name =...
- `FieldHelper`使用Java反射`Class.getDeclaredFields()`来获取特定类的字段信息 https://github.com/abel533/Mapper/blob/5e31029b2df157afe9031fe183f6d7795ac2aa19/core/src/main/java/tk/mybatis/mapper/mapperhelper/FieldHelper.java#L183 - 然而,官方的Javadoc提到,随着时间的推移,元素的顺序不会保持 - 修复程序已于2022年10月15日在[此提交](https://github.com/abel533/Mapper/pull/666/commits/70232e7c5edd63bee897873bde25efbb2d076a1a)中被合并,但在[此提交](https://github.com/abel533/Mapper/commit/79d313a7ca6cba6c5d5323746fb83ed5744180a1)中删除 - 我怀疑这是因为2022年10月16日测试“ComplexEntityTest.test()”中的[此更改](https://github.com/abel533/Mapper/commit/2fcefe65e77db1e57edb33290cd0e347ecaec8),该测试会因订购问题而失败。 - 由于字段已经排序,这个测试的预期值应该从 ``` Assert.assertEquals("SELECT id,user_name,address,state FROM user " + "" + " AND id = #{id}" + " AND user_name =...
- 该公关通过实施第二个拟议解决方案修复了https://github.com/kanwangzjm/funiture/issues/50中提到的问题 - 使用当前时间戳将确保“ShortUrl”对所有测试运行都是独一无二的。
- `ShortUrlDaoTest.testSave()`将ShortUrl与数据库中的当前“测试”一起保存在 https://github.com/kanwangzjm/funiture/blob/71ca0fb0658b3d839d9e049ac36429207f05329b/src/test/java/com/app/mvc/dao/ShortUrlDaoTest.java#L18-L21 - 然而,“short_url”的DDL提到“current”应该是独一无二的at https://github.com/kanwangzjm/funiture/blob/71ca0fb0658b3d839d9e049ac36429207f05329b/sql/init_funiture.sql#L1 - 第二次运行此测试将导致SQL异常,因为首次运行时DB中已经有一个“测试”值 可能的解决方案 - 在保存“测试”之前删除数据库中的值。 - 每次根据当前日期创建一个新的 ShortUrl。
## Bug Report **Current Behavior** - While testing the `PageImpl`, the contents of `Page` are mocked using `MockPage` from the dependency `io.wcm.testing.aem-mock.junit5`. - The mock values for `Page` is loaded...
# Bug Report ## Description ## Steps to Reproduce 1. Step 1 2. Step 2 3. Step 3 ## Actual Behavior Highlighter goes to the start of the page because...
# Bug Report ## Description Scatterplot BTS modes doesn't work properly when used only with one layer. Moreover, the SVGs generated from Matplotlib is not compatible with the existing library....
## Reproducible Steps 1. Download the required csv dataset from here: https://github.com/xability/a11y_ds_course/blob/main/data/gapminder.csv 1. Execute the following code within Python repl: ```python import pandas as pd import seaborn as sns import...