this was a result of 
b2094a8a (Jeroen Demeyer     2015-11-18 15:53:34 +0100 1402)

which did change
  
       description = G._gap_().StructureDescription().__str__()

to

       description = str(G._gap_().StructureDescription())

but these calls are not 100% the same:

sage: groups.matrix.GL(4,2).structure_description()
'"A8"'
sage: groups.matrix.GL(4,2)._gap_().StructureDescription().__str__()
'A8'

I.e. str() does not strip extra '', for some reason...

I don't see why, and I don't understand the root cause of this.

Dima


On Tuesday, 15 December 2015 19:51:30 UTC, kcrisman wrote:
>
> Two optional tests fails (perhaps this is already known):
>
> $ ./sage --version
> SageMath Version 6.10.rc1, Release Date: 2015-12-13
>
>
> sage -t src/sage/groups/generic.py
> **********************************************************************
> File "src/sage/groups/generic.py", line 1388, in 
> sage.groups.generic.structure_description
> Failed example:
>     G.structure_description()     # optional - database_gap
> Expected:
>     'C7'
> Got:
>     '"C7"'
> **********************************************************************
> File "src/sage/groups/generic.py", line 1393, in 
> sage.groups.generic.structure_description
> Failed example:
>     groups.matrix.GL(4,2).structure_description() # optional - 
> database_gap
> Expected:
>     'A8'
> Got:
>     '"A8"'
> **********************************************************************
> 1 item had failures:
>    2 of  14 in sage.groups.generic.structure_description
>     [215 tests, 2 failures, 7.47 s]
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-release" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.

Reply via email to