Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
Signed-off-by: suyanhanx <[email protected]>
  • Loading branch information
suyanhanx committed Oct 29, 2023
1 parent ef14449 commit 7eeff13
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ public void testStatFile() {
*/
@Test
public void testWriteFileWithNonAsciiName() {
// Supabase does not support non-ascii name.
if (op.info().scheme() == "supabase") {
return;
}

final String path = "❌😱中文.test";
final byte[] content = generateBytes();
op().write(path, content).join();
Expand Down

0 comments on commit 7eeff13

Please sign in to comment.